Skip to content

Commit 0ea7b02

Browse files
authored
fix(ci): cosign repo url
1 parent f86d021 commit 0ea7b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
break
5555
fi
5656
chart_name=$(echo "${pkg##*/}" | sed 's/-[0-9].*$//')
57-
repo="oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
58-
helm push "${pkg}" "${repo}" |& grep Digest: | awk '{print $NF}' > digest.txt
57+
repo="ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
58+
helm push "${pkg}" "oci://${repo}" |& grep Digest: | awk '{print $NF}' > digest.txt
5959
cosign sign --yes "${repo}/${chart_name}@$(cat digest.txt)"
6060
done

0 commit comments

Comments
 (0)