Skip to content

Commit

Permalink
ci: use rust toolchain for debian release
Browse files Browse the repository at this point in the history
  • Loading branch information
sitkevij committed Jan 2, 2024
1 parent bfbf86a commit a708256
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a708256

Please sign in to comment.