From 1b1e19e4047d6fc00a03b8a4fcffb7fdd6725ac0 Mon Sep 17 00:00:00 2001 From: Jy <82190170+JyJyJcr@users.noreply.github.com> Date: Fri, 19 Apr 2024 17:19:55 +0900 Subject: [PATCH] fix: fix **b**install failure (#27) * fix: force binstall * fix: version up --- .github/workflows/release.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f42d48d..d5c8aba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -113,7 +113,7 @@ jobs: uses: cargo-bins/cargo-binstall@v1.6.4 if: matrix.const.as_r && contains(matrix.platform.target, 'linux') - name: BInstall cargo-deb - run: cargo binstall -y cargo-deb + run: cargo binstall --force -y cargo-deb if: matrix.const.as_r && contains(matrix.platform.target, 'linux') - name: Build deb package run: cargo deb --no-build --no-strip --target ${{ matrix.platform.target }} diff --git a/Cargo.lock b/Cargo.lock index 4855d9d..9691c3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -583,7 +583,7 @@ dependencies = [ [[package]] name = "quicssh-rs" -version = "0.1.5-dev" +version = "0.1.5" dependencies = [ "clap", "log", diff --git a/Cargo.toml b/Cargo.toml index d28e8a8..8cb0ad4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quicssh-rs" -version = "0.1.5-dev" +version = "0.1.5" edition = "2021" license = "MIT" authors = ["oowl "]