From 92296e7bccb796ce07b32d9e05d61c5af4582ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Tue, 12 Mar 2024 17:07:28 +0100 Subject: [PATCH] ci: Properly exclude large stuff from the reproducible FF extension source zip --- .github/workflows/release_nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index 0ac59691e..3b73ccf99 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -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