Skip to content

Commit 72f48e7

Browse files
committed
ci: 👷 update publish workflow to zip unpacked artifacts and upload them
1 parent 7147c4f commit 72f48e7

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,20 @@ jobs:
9797

9898
- uses: actions/download-artifact@v4
9999
with:
100-
path: artifacts
101-
merge-multiple: true
100+
name: unpacked
101+
path: unpacked/
102+
103+
- run: mkdir -p uploads/
104+
105+
- run: |
106+
cd unpacked
107+
zip -r ../uploads/unpacked.zip *
108+
109+
# - uses: actions/download-artifact@v4
110+
# with:
111+
# path: artifacts
112+
# merge-multiple: true
102113

103114
- uses: softprops/action-gh-release@v2
104115
with:
105-
files: artifacts/**
116+
files: uploads/**

0 commit comments

Comments
 (0)