From d3947f90cd05f4061bec18ed65c205b01c729f13 Mon Sep 17 00:00:00 2001 From: Daniel Jacobs Date: Thu, 30 May 2024 12:03:11 -0400 Subject: [PATCH] ci: Ignore just the Docker package files in the reproducible build --- .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 301590dd0..813221368 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/*' '/web/*/node_modules/*' '/web/packages/*/dist/*' '/web/docker/docker_builds/*' '/target/*' '/.git/*' '/tests/tests/swfs/*' + zip -r reproducible-source.zip . -x '/web/node_modules/*' '/web/*/node_modules/*' '/web/packages/*/dist/*' '/web/docker/docker_builds/packages/*' '/target/*' '/.git/*' '/tests/tests/swfs/*' cp reproducible-source.zip "${{ needs.create-nightly-release.outputs.package_prefix }}-reproducible-source.zip" - name: Upload reproducible source archive