ci: Properly exclude large stuff from the reproducible FF extension source zip

This commit is contained in:
TÖRÖK Attila 2024-03-12 17:07:28 +01:00 committed by Nathan Adams
parent aa834e6530
commit 92296e7bcc
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ jobs:
if: ${{ !matrix.demo }}
shell: bash -l {0}
run: |
zip -r reproducible-source.zip . -x '/web/node_modules/*' -x '/web/*/node_modules/*' -x '/web/packages/*/dist' -x '/target' -x '/.git/*' -x '/tests/tests/swfs/*'
zip -r reproducible-source.zip . -x '/web/node_modules/*' '/web/*/node_modules/*' '/web/packages/*/dist/*' '/web/docker/docker_builds/*' '/target/*' '/.git/*' '/tests/tests/swfs/*'
cp reproducible-source.zip "${{ needs.create-nightly-release.outputs.package_prefix }}-reproducible-source.zip"
- name: Upload reproducible source archive