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:
198198 steps :
199199 - name : Download artifacts
200200 uses : actions/download-artifact@v4
201+ with :
202+ path : clang-tools-artifacts
203+ merge-multiple : true
201204 - name : list files
202- run : ls -laR .
205+ run : ls -laR clang-tools-artifacts
203206 - 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 {} \;
205208 - name : Checkout code
206209 uses : actions/checkout@v4
207210 - name : Get short SHA
@@ -213,8 +216,7 @@ jobs:
213216 run : |
214217 RELEASE_TAG="master-${{ steps.sha.outputs.short_sha }}"
215218 gh release create "$RELEASE_TAG" \
216- ./ clang-tools-llvm-project-*/ * \
219+ clang-tools-artifacts\ * \
217220 --title "$RELEASE_TAG" \
218221 --notes "Draft release of prebuilt clang tools" \
219222 --draft
220-
You can’t perform that action at this time.
0 commit comments