Skip to content

Commit

Permalink
ci-workflow: Fix artifact naming again
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Jan 29, 2024
1 parent 8e331a0 commit d5eeacc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,19 +322,19 @@ jobs:
- id: merge-results
uses: actions/upload-artifact/merge@v4
with:
name: build-results
name: ${{ github.job }}-build-results
pattern: build-result-*
delete-merged: true
- id: merge-logs
uses: actions/upload-artifact/merge@v4
with:
name: build-logs
name: ${{ github.job }}-build-logs
pattern: build-log-*
delete-merged: true
- id: download
uses: actions/download-artifact@v4
with:
name: build-results
name: ${{ github.job }}-build-results
path: ~/results
- id: merge
run: |
Expand Down

0 comments on commit d5eeacc

Please sign in to comment.