We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7147c4f commit 72f48e7Copy full SHA for 72f48e7
1 file changed
.github/workflows/publish.yml
@@ -97,9 +97,20 @@ jobs:
97
98
- uses: actions/download-artifact@v4
99
with:
100
- path: artifacts
101
- merge-multiple: true
+ name: unpacked
+ 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
113
114
- uses: softprops/action-gh-release@v2
115
- files: artifacts/**
116
+ files: uploads/**
0 commit comments