We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1693fb4 commit 9949d70Copy full SHA for 9949d70
1 file changed
.github/workflows/main.yml
@@ -26,18 +26,11 @@ jobs:
26
run: |
27
mkdir -p build
28
zip -X -r build/${{ github.event.repository.name }}.zip . \
29
- .git/* \
30
- bin/* \
31
- node_modules/* \
32
- .* \
33
- "*/\.*" \
34
- *.dist \
35
- *.xml \
36
- *.neon \
37
- composer.lock \
38
- package*.json \
39
- tests/* \
40
- build/*
+ -x .git/* \
+ -x .* \
+ -x composer.lock \
+ -x package*.json \
+ -x build/*
41
42
- name: Upload artifact
43
uses: actions/upload-artifact@v4
0 commit comments