diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index ea2797116..37426471e 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -322,7 +322,9 @@ jobs: - name: Produce reproducible source archive if: ${{ !matrix.demo }} shell: bash -l {0} - run: zip -r reproducible-source.zip . -x /web/node_modules/**/* -x /web/**/node_modules/**/* && cp reproducible-source.zip "${{ needs.create-nightly-release.outputs.package_prefix }}-reproducible-source.zip" + run: | + zip -r reproducible-source.zip . -x '/web/node_modules/*' -x '/web/*/node_modules/*' -x '/.git/*' -x '/tests/tests/swfs/*' + cp reproducible-source.zip "${{ needs.create-nightly-release.outputs.package_prefix }}-reproducible-source.zip" - name: Upload reproducible source archive if: ${{ !matrix.demo }}