Skip to content

Commit

Permalink
fix: use run id instead of run number
Browse files Browse the repository at this point in the history
  • Loading branch information
bissolli committed May 6, 2024
1 parent 8b4d43e commit ffc95dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ runs:
if: ${{ inputs.action == 'persist' }}
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifactName || github.run_number }}
name: ${{ inputs.artifactName || github.run_id }}
path: workspace.tar
if-no-files-found: error
overwrite: true
- name: Retrieve workspace
if: ${{ inputs.action == 'retrieve' }}
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifactName || github.run_number }}
name: ${{ inputs.artifactName || github.run_id }}
- name: Extract workspace
if: ${{ inputs.action == 'retrieve' }}
shell: bash
Expand Down

0 comments on commit ffc95dc

Please sign in to comment.