diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26f9878..8b4a860 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -115,7 +115,7 @@ jobs: - name: Upload build result uses: actions/upload-artifact@v4.3.1 with: - name: nix-package + name: insanity-nix-package path: result release: @@ -125,6 +125,14 @@ jobs: steps: - name: Download artifacts uses: actions/download-artifact@v4 + - name: Zip artifacts + run: | + for f in *; do + if [ -d "$f" ]; then + zip -r "$f.zip" "$f" + rm -rf "$f" + fi + done - name: Create release uses: ncipollo/release-action@v1 with: