From edd67a102a16af0dd37e9276d822f6ccbe5de3dc Mon Sep 17 00:00:00 2001 From: strawberry Date: Mon, 13 May 2024 15:36:20 -0400 Subject: [PATCH] ci(debian): add missing `--target=` for arm64 debs, add `--verbose` Signed-off-by: strawberry --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fc2cf60..4caf034a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -209,7 +209,7 @@ jobs: bin/nix-build-and-cache just .#static-${{ matrix.target }} mkdir -p target/release cp -v -f result/bin/conduit target/release/ - direnv exec . cargo deb --no-build --no-strip --output target/debian/${{ matrix.target }}.deb + direnv exec . cargo deb --verbose --no-build --no-strip --target=${{ matrix.target }} --output target/debian/${{ matrix.target }}.deb mv target/release/conduit static-${{ matrix.target }} - name: Upload static-${{ matrix.target }}