From feec28010a1cbb0bf88ab06804c49062c76bedf6 Mon Sep 17 00:00:00 2001 From: Zachary Hall Date: Sun, 20 Oct 2024 15:43:24 -0700 Subject: [PATCH] Update creation of source code archive --- .forgejo/workflows/compile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml index 00090d3..4123861 100644 --- a/.forgejo/workflows/compile.yaml +++ b/.forgejo/workflows/compile.yaml @@ -17,7 +17,7 @@ jobs: - name: Install ZSTD compressor run: apt-get update && apt-get install -y zstd - name: Create archive - run: tar -cf source.tar . && zstd -19 source.tar + run: tar --exclude-vcs -c --to-stdout --exclude source.tar.zst . | zstd -19 -T0 -o source.tar.zst - name: Upload source code uses: actions/upload-artifact@v3 with: