summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-10-26 16:13:54 +0100
committerGitHub <noreply@github.com>2023-10-26 16:13:54 +0100
commitb7adf1d797f43d8547751bf7923db66c2d01c107 (patch)
tree875500deb80898538e348ad94d96e5a9a1795e0b /.github
parenteec750f0493d08fe7f98a73db2006c09ef327fe7 (diff)
Fix cargo deb usage (#1337)
v2.0.0 of cargo deb added the revision number. I'd rather not change the output name of our file, so force cargo-deb to stick to the "old" behaviour
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 4139bf045..89eadeb9a 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -181,7 +181,7 @@ jobs:
if: startsWith(matrix.job.os, 'ubuntu')
run: |
cargo install cargo-deb
- cargo deb -p atuin
+ cargo deb --deb-revision="" -p atuin
case ${{ matrix.job.target }} in
aarch64-*-linux-*) DPKG_ARCH=arm64 ;;