Skip to content

Commit

Permalink
Make artifact names unique
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown committed Sep 12, 2024
1 parent 1f1b983 commit 58a9699
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,10 @@ jobs:

- uses: actions/[email protected]
with:
# Upload the sysroot folder. Give it a name according to the OS it was built for.
name: ${{ format( 'sysroot-{0}.tgz', matrix.os) }}
# Upload the sysroot folder. To avoid action erros, we give it a unique
# name using the OS it was built for and the Clang version it was built
# with.
name: ${{ format( 'sysroot-{0}-clang-{1}.tgz', matrix.os, matrix.clang_version) }}
path: sysroot

# Disable the headerstest job for now, while WASI transitions from the
Expand Down

0 comments on commit 58a9699

Please sign in to comment.