Skip to content

Commit 9ed1f43

Browse files
authored
Merge pull request #219 from cpanato/fix
remove double quotes, looks like it is passing as a single string to cosign and not as an array
2 parents c4e0852 + 37cf7d0 commit 9ed1f43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release/ko-sign-release-images.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ if [[ ! -f policyImagerefs ]]; then
3232
fi
3333

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

0 commit comments

Comments
 (0)