File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -198,10 +198,13 @@ jobs:
198
198
steps :
199
199
- name : Download artifacts
200
200
uses : actions/download-artifact@v4
201
+ with :
202
+ path : clang-tools-artifacts
203
+ merge-multiple : true
201
204
- name : list files
202
- run : ls -laR .
205
+ run : ls -laR clang-tools-artifacts
203
206
- name : Delete all files over 2G # see issue 40
204
- run : find . -type f -size +2G -exec rm -v {} \;
207
+ run : find clang-tools-artifacts -type f -size +2G -exec rm -v {} \;
205
208
- name : Checkout code
206
209
uses : actions/checkout@v4
207
210
- name : Get short SHA
@@ -213,8 +216,7 @@ jobs:
213
216
run : |
214
217
RELEASE_TAG="master-${{ steps.sha.outputs.short_sha }}"
215
218
gh release create "$RELEASE_TAG" \
216
- ./ clang-tools-llvm-project-*/ * \
219
+ clang-tools-artifacts\ * \
217
220
--title "$RELEASE_TAG" \
218
221
--notes "Draft release of prebuilt clang tools" \
219
222
--draft
220
-
You can’t perform that action at this time.
0 commit comments