Skip to content

Commit 06a4c33

Browse files
[#8] Zip output before uploading artifacts (#9)
1 parent 57ae2f1 commit 06a4c33

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/workflow-dispatch.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,11 @@ jobs:
4141
- name: Stitch maps
4242
run: python scripts/stitch.py
4343

44-
- name: Upload Output
45-
uses: actions/upload-artifact@v3
44+
- name: Archive output
45+
run: zip -r out.zip ./out
46+
47+
- name: Upload output
48+
uses: actions/upload-artifact@v4
4649
with:
4750
name: out-${{ github.run_id }}-${{ github.run_attempt }}
48-
path: out/
51+
path: out.zip

0 commit comments

Comments
 (0)