Skip to content

Commit 6b1938b

Browse files
committed
Limit artifacts to llvm and sysroot
1 parent 601e9d6 commit 6b1938b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-toolchain.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,11 @@ jobs:
233233
- name: Download Artifacts
234234
uses: actions/download-artifact@v4
235235
with:
236+
pattern: |
237+
llvm-*
238+
sysroot-*
236239
path: artifacts/
240+
merge-multiple: True
237241
- run: |
238242
git config user.name github-actions
239243
git config user.email [email protected]
@@ -242,6 +246,6 @@ jobs:
242246
if [ "${{ inputs.build_number }}" != "0" ]; then VERSION="$VERSION-${{ inputs.build_number }}"; fi
243247
git tag -a $VERSION -m "Release $VERSION"
244248
git push --tags
245-
gh release create $VERSION artifacts/*/*
249+
gh release create $VERSION artifacts/*
246250
env:
247251
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)