Skip to content

Commit 6e8fcb1

Browse files
authored
Merge pull request #45 from StacklokLabs/fix-signing
Fix signing - append server to image name
2 parents 56e6893 + a7d5ed1 commit 6e8fcb1

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)