diff options
author | sitkevij <1553398+sitkevij@users.noreply.github.com> | 2024-01-02 11:35:34 -0800 |
---|---|---|
committer | sitkevij <1553398+sitkevij@users.noreply.github.com> | 2024-01-02 11:35:34 -0800 |
commit | a708256d5f9c65fbdd7612c10adaa70b26030fb9 (patch) | |
tree | d398ed86a8069ff87b153e41a4df95678c9d476a | |
parent | bfbf86a1290153dc1f9d91e65542044652abff3b (diff) |
ci: use rust toolchain for debian releaseHEADmasterci/debian-release
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9fa248c..0626fce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,15 @@ on: jobs: build: - runs-on: rust-latest + name: Debian Release + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - - run: | # Since v2.0.0 the deb package version will have a "-1" suffix. You can disable this by adding --deb-revision="" flag or revision = "" in Cargo metadata. The default suffix is for compliance with Debian's packaging standard. + - name: Cargo Install Run + uses: dtolnay/rust-toolchain@stable + - run: | + # Since v2.0.0 the deb package version will have a "-1" suffix. You can disable this by adding --deb-revision="" flag or revision = "" in Cargo metadata. The default suffix is for compliance with Debian's packaging standard. cargo install cargo-deb cargo deb - name: Release |