From ca922a571676e06d3299cce5d520e178ba89a276 Mon Sep 17 00:00:00 2001 From: Anastassios Nanos Date: Fri, 17 Mar 2023 07:56:32 +0000 Subject: [PATCH] Fix aarch64 action run (#113) 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 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a39fba2..64ed72b 100644 --- a/action.yml +++ b/action.yml @@ -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