Skip to content

Commit

Permalink
remove double quotes, looks like it is passing as a single string to …
Browse files Browse the repository at this point in the history
…cosign and not as an array

Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Sep 6, 2022
1 parent c4e0852 commit 37cf7d0
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 37cf7d0

Please sign in to comment.