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.
1 parent f86d021 commit 0ea7b02Copy full SHA for 0ea7b02
.github/workflows/release.yaml
@@ -54,7 +54,7 @@ jobs:
54
break
55
fi
56
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
+ repo="ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
+ helm push "${pkg}" "oci://${repo}" |& grep Digest: | awk '{print $NF}' > digest.txt
59
cosign sign --yes "${repo}/${chart_name}@$(cat digest.txt)"
60
done
0 commit comments