Skip to content

Commit

Permalink
Exclude package.* files from zip generation
Browse files Browse the repository at this point in the history
  • Loading branch information
seiwan committed Jun 13, 2024
1 parent ac3deed commit 919743d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ps8-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 919743d

Please sign in to comment.