We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a8e16d + b2b35e4 commit 67962b5Copy full SHA for 67962b5
.github/workflows/release.yml
@@ -79,9 +79,9 @@ jobs:
79
run: |
80
TAG=$(echo "${{ steps.tag.outputs.VERSION }}" | sed 's/+/_/g')
81
# Sign the ko image
82
- cosign sign -y $KO_DOCKER_REPO:$TAG
+ cosign sign -y $KO_DOCKER_REPO/server:$TAG
83
84
# Sign the latest tag if building from a tag
85
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
86
- cosign sign -y $KO_DOCKER_REPO:latest
+ cosign sign -y $KO_DOCKER_REPO/server:latest
87
fi
0 commit comments