From 436ed92bcd4a638c9b432689e96c7d9e3e4b0614 Mon Sep 17 00:00:00 2001 From: Gaius Date: Wed, 4 Dec 2024 16:40:16 +0800 Subject: [PATCH] chore: add no-build for cargo deb Signed-off-by: Gaius --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b17c7e2..50dcbcc1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,7 +76,7 @@ jobs: run: | binary_name="client" dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}" - cargo deb -p dragonfly-client --target ${{ matrix.target }} --variant ${{ matrix.target }} --compress-type gzip --output $dirname.deb + cargo deb -p dragonfly-client --no-build --target ${{ matrix.target }} --variant ${{ matrix.target }} --compress-type gzip --output $dirname.deb echo "CLIENT_DEB_ASSET=$dirname.deb" >> $GITHUB_ENV - name: Build archive client(RPM)