From 919743df5d6a52d8c99ba177e1832516e843191f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BIDAULT?= Date: Thu, 13 Jun 2024 11:01:15 +0200 Subject: [PATCH] Exclude package.* files from zip generation --- .github/workflows/ps8-build-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ps8-build-release.yml b/.github/workflows/ps8-build-release.yml index f7384d119..a95bc87e0 100644 --- a/.github/workflows/ps8-build-release.yml +++ b/.github/workflows/ps8-build-release.yml @@ -67,7 +67,7 @@ jobs: - name: Generate zip run: | - zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x '.editorconfig' -x '*_dev*' -x '*tests*' + zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x 'package.*' -x '.editorconfig' -x '*_dev*' -x '*test*' - name: Push to GCP bucket storage shell: bash @@ -116,7 +116,7 @@ jobs: - name: Generate zip run: | - zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x '.editorconfig' -x '*_dev*' -x '*tests*' + zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x 'package.*' -x '.editorconfig' -x '*_dev*' -x '*test*' - name: Push to GCP bucket storage shell: bash @@ -197,7 +197,7 @@ jobs: - name: Prepare for Release run: | - zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x '.editorconfig' -x '*_dev*' -x '*tests*' + zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' -x '.php_cs.*' -x '*/node_modules' -x 'composer.*' -x 'package.*' -x '.editorconfig' -x '*_dev*' -x '*test*' - name: Clean existing assets shell: bash