From fc132c91f7e1e200ff8efde45224a693aa55756d Mon Sep 17 00:00:00 2001 From: Hoang Dinh Date: Tue, 2 Apr 2024 09:14:08 +1000 Subject: [PATCH] build: also exclude deps --- .github/actions/build-linux/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-linux/action.yaml b/.github/actions/build-linux/action.yaml index 51ceb435a..059a11e0f 100644 --- a/.github/actions/build-linux/action.yaml +++ b/.github/actions/build-linux/action.yaml @@ -33,7 +33,7 @@ runs: - name: Zip to preserve permissions run: | cd src-tauri/target/release - tar -czvf ${{ github.workspace }}/${{ steps.set-env.outputs.artifact_name }}.tar.gz --exclude=bundle --exclude=build . + tar -czvf ${{ github.workspace }}/${{ steps.set-env.outputs.artifact_name }}.tar.gz --exclude=bundle --exclude=build --exclude=deps . shell: bash - name: Upload binary as artifact