Skip to content

Commit 1e10592

Browse files
authored
test: update build.yml
1 parent 8c6da8c commit 1e10592

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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-

0 commit comments

Comments
 (0)