diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 2d7a573..8fee841 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -5,7 +5,7 @@ permissions: on: release: - types: [published, created] + types: [created] jobs: upload-assets: diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e2576d..4e679c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `granc` - [0.7.2](https://github.com/JasterV/granc/compare/granc-v0.7.1...granc-v0.7.2) - 2026-02-06 + +- [chore] Add support for cargo binstall + ## `granc` - [0.7.1](https://github.com/JasterV/granc/compare/granc-v0.7.0...granc-v0.7.1) - 2026-02-06 - [feat] Add a new command to generate markdown documentation for gRPC services ([#46](https://github.com/JasterV/granc/pull/46)) diff --git a/granc/Cargo.toml b/granc/Cargo.toml index 53eab57..4bd5d77 100644 --- a/granc/Cargo.toml +++ b/granc/Cargo.toml @@ -11,7 +11,15 @@ publish = true readme = "../README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.7.1" +version = "0.7.2" + +[package.metadata.binstall] +pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }.{ archive-format }" +bin-dir = "{ name }-{ target }/{ bin }" +pkg-fmt = "tgz" + +[package.metadata.binstall.overrides.x86_64-pc-windows-msvc] +pkg-fmt = "zip" [dependencies] clap = { version = "4.5.56", features = ["derive"] }