From b7adf1d797f43d8547751bf7923db66c2d01c107 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 26 Oct 2023 16:13:54 +0100 Subject: [PATCH] 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 --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4139bf0..89eadeb 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 ;;