We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601e9d6 commit 6b1938bCopy full SHA for 6b1938b
.github/workflows/build-toolchain.yml
@@ -233,7 +233,11 @@ jobs:
233
- name: Download Artifacts
234
uses: actions/download-artifact@v4
235
with:
236
+ pattern: |
237
+ llvm-*
238
+ sysroot-*
239
path: artifacts/
240
+ merge-multiple: True
241
- run: |
242
git config user.name github-actions
243
git config user.email [email protected]
@@ -242,6 +246,6 @@ jobs:
246
if [ "${{ inputs.build_number }}" != "0" ]; then VERSION="$VERSION-${{ inputs.build_number }}"; fi
247
git tag -a $VERSION -m "Release $VERSION"
244
248
git push --tags
245
- gh release create $VERSION artifacts/*/*
249
+ gh release create $VERSION artifacts/*
250
env:
251
GH_TOKEN: ${{ github.token }}
0 commit comments