From 223b5e34c6143f770e8a4cba31c159fcad533f07 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..8906825 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: rm source.tar.zst -f; 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: