Skip to content

Commit

Permalink
Fix aarch64 action run (#113)
Browse files Browse the repository at this point in the history
It seems there's a typo in the ARM64 case. 

The `desired_cosign_filename` variable is set to `_amd64`. This small patch fixes it.

Signed-off-by: Anastassios Nanos <ananos@nubificus.co.uk>
  • Loading branch information
ananos committed Mar 17, 2023
1 parent bd2d118 commit ca922a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -105,7 +105,7 @@ runs:
ARM64)
bootstrap_filename='cosign-linux-arm64'
bootstrap_sha=${bootstrap_linux_arm64_sha}
desired_cosign_filename='cosign-linux-amd64'
desired_cosign_filename='cosign-linux-arm64'
if [[ ${{ inputs.cosign-release }} == 'v0.6.0' ]]; then
log_error "linux-arm64 build not available at v0.6.0"
exit 1
Expand Down

0 comments on commit ca922a5

Please sign in to comment.