Skip to content

Commit

Permalink
Merge pull request #219 from cpanato/fix
Browse files Browse the repository at this point in the history
remove double quotes, looks like it is passing as a single string to cosign and not as an array
  • Loading branch information
cpanato authored Sep 7, 2022
2 parents c4e0852 + 37cf7d0 commit 9ed1f43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/ko-sign-release-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ if [[ ! -f policyImagerefs ]]; then
fi

echo "Signing images with Keyless..."
cosign sign --force -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" "$(cat policyControllerImagerefs)"
cosign sign --force -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" "$(cat policyImagerefs)"
cosign sign --force -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat policyControllerImagerefs)
cosign sign --force -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat policyImagerefs)

0 comments on commit 9ed1f43

Please sign in to comment.