From 2b66ae28c731aa3e1a6a93ec875ba0a3a03c27a0 Mon Sep 17 00:00:00 2001 From: ernestognw Date: Thu, 11 Jan 2024 16:35:20 -0600 Subject: [PATCH] Uniquely identify uploads --- .github/actions/gas-compare/action.yml | 2 +- .github/actions/storage-layout/action.yml | 2 +- .github/workflows/release-cycle.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/gas-compare/action.yml b/.github/actions/gas-compare/action.yml index f1a37344007..2722f1330ca 100644 --- a/.github/actions/gas-compare/action.yml +++ b/.github/actions/gas-compare/action.yml @@ -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 }} diff --git a/.github/actions/storage-layout/action.yml b/.github/actions/storage-layout/action.yml index e9958686d95..0004455653a 100644 --- a/.github/actions/storage-layout/action.yml +++ b/.github/actions/storage-layout/action.yml @@ -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 }} diff --git a/.github/workflows/release-cycle.yml b/.github/workflows/release-cycle.yml index 85fe70b6d86..24af07407a9 100644 --- a/.github/workflows/release-cycle.yml +++ b/.github/workflows/release-cycle.yml @@ -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 @@ -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: