Skip to content

Commit 7348343

Browse files
committed
Ditch montudor/action-zip
1 parent 6f36cbb commit 7348343

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
echo "RELEASE_VERSION=${VERSION//v}" >> $GITHUB_ENV
2323
2424
- 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**
25+
id: package
26+
run: |
27+
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**
2829
2930
- name: Upload artifact
3031
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)