We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f36cbb commit 7348343Copy full SHA for 7348343
1 file changed
.github/workflows/main.yml
@@ -22,9 +22,10 @@ jobs:
22
echo "RELEASE_VERSION=${VERSION//v}" >> $GITHUB_ENV
23
24
- name: Create artifact
25
- uses: montudor/action-zip@v1
26
- with:
27
- args: mkdir -p build && zip -r build/${{ github.event.repository.name }}.zip . -x *.git* bin** node_modules/\* .* "*/\.*" *.dist *.xml *.neon composer.lock package*.json tests** build**
+ id: package
+ run: |
+ mkdir -p build
28
+ zip -X -r build/${{ github.event.repository.name }}.zip . -x *.git* bin** node_modules/\* .* "*/\.*" *.dist *.xml *.neon composer.lock package*.json tests** build**
29
30
- name: Upload artifact
31
uses: actions/upload-artifact@v4
0 commit comments