We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56e6893 + a7d5ed1 commit 6e8fcb1Copy full SHA for 6e8fcb1
.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