We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11351a4 commit 3e83a4bCopy full SHA for 3e83a4b
1 file changed
.github/workflows/create_airac_release.yml
@@ -32,7 +32,10 @@ jobs:
32
33
- name: Create ZIP of entire repo
34
run: |
35
- zip -r "output/VATNZ-SKYLINE_${CYCLE}.zip" .
+ zip -r "output/VATNZ-SKYLINE_${CYCLE}.zip" . \
36
+ -x ".git/*" \
37
+ -x ".github/*" \
38
+ -x "output/*"
39
shell: bash
40
41
- name: Create Release with Assets
@@ -48,3 +51,4 @@ jobs:
48
51
output/VATNZ-SKYLINE_${{ env.CYCLE }}.zip
49
52
env:
50
53
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54
+
0 commit comments