Skip to content

Commit e9fd6aa

Browse files
authored
ci: Use correct artifact name for dogfooding (#742)
## Summary Fixes release workflow failure caused by artifact name mismatch. The `download-artifact` step in `action.yml` was looking for an artifact named with the commit SHA (`${{ github.sha }}`), but `build.yml` uploads the artifact as `craft-binary`. ## Changes - Updated `action.yml` to download artifact by name `craft-binary` instead of `${{ github.sha }}` ## Related - Failed run: https://github.com/getsentry/craft/actions/runs/21755074971
1 parent bf5e62f commit e9fd6aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ runs:
9393
if: github.repository == 'getsentry/craft'
9494
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
9595
with:
96-
name: ${{ github.sha }}
96+
name: craft-binary
9797
path: /tmp/craft-artifact
9898

9999
- name: Install Craft from artifact or release

0 commit comments

Comments
 (0)