Skip to content

Commit

Permalink
Uniquely identify uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Jan 11, 2024
1 parent dc5011b commit 2b66ae2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/gas-compare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ runs:
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: gasreport
name: gasreport-${{ github.run_id }}-${{ github.run_attempt }}
path: ${{ inputs.out_report }}
2 changes: 1 addition & 1 deletion .github/actions/storage-layout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ runs:
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: layout
name: layout-${{ github.run_id }}-${{ github.run_attempt }}
path: ${{ inputs.out_layout }}
4 changes: 2 additions & 2 deletions .github/workflows/release-cycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Upload tarball artifact
uses: actions/upload-artifact@v4
with:
name: ${{ github.ref_name }}
name: ${{ github.ref_name }}-${{ github.run_id }}-${{ github.run_attempt }}
path: ${{ steps.pack.outputs.tarball }}
- name: Publish
run: bash scripts/release/workflow/publish.sh
Expand All @@ -172,7 +172,7 @@ jobs:
id: artifact
uses: actions/download-artifact@v4
with:
name: ${{ github.ref_name }}
name: ${{ github.ref_name }}-${{ github.run_id }}-${{ github.run_attempt }}
- name: Check integrity
run: bash scripts/release/workflow/integrity-check.sh
env:
Expand Down

0 comments on commit 2b66ae2

Please sign in to comment.