Skip to content

Commit

Permalink
github: disambiguate proof artifact upload
Browse files Browse the repository at this point in the history
Proof artifact upload had name clashes for different artifacts from the
same job that previously would overwrite each other and with v4 actions
now error. This commit disambiguates the names.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Feb 9, 2024
1 parent 9bac64c commit 1a52833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:
- name: Upload kernel builds
uses: actions/upload-artifact@v4
with:
name: kernel-builds
name: kernel-builds-${{ matrix.arch }}-${{ matrix.features }}
path: artifacts/kernel-builds
if-no-files-found: ignore
- name: Upload logs
uses: actions/upload-artifact@v4
with:
name: logs-${{ matrix.arch }}
name: logs-${{ matrix.arch }}-${{ matrix.features }}
path: logs.tar.xz

0 comments on commit 1a52833

Please sign in to comment.