Skip to content

Commit a7d5ed1

Browse files
committed
Fix signing - append server to image name
Signed-off-by: Radoslav Dimitrov <radoslav@stacklok.com>
1 parent 56e6893 commit a7d5ed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ jobs:
7979
run: |
8080
TAG=$(echo "${{ steps.tag.outputs.VERSION }}" | sed 's/+/_/g')
8181
# Sign the ko image
82-
cosign sign -y $KO_DOCKER_REPO:$TAG
82+
cosign sign -y $KO_DOCKER_REPO/server:$TAG
8383
8484
# Sign the latest tag if building from a tag
8585
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
86-
cosign sign -y $KO_DOCKER_REPO:latest
86+
cosign sign -y $KO_DOCKER_REPO/server:latest
8787
fi

0 commit comments

Comments
 (0)