We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e2368 commit abe7055Copy full SHA for abe7055
.github/workflows/release-helm.yaml
@@ -54,4 +54,5 @@ jobs:
54
55
- name: Push to GitHub Container Registry
56
run: |
57
- helm push "${{ steps.package.outputs.package_file }}" oci://ghcr.io/${{ github.repository }}
+ REPO_LOWERCASE=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
58
+ helm push "${{ steps.package.outputs.package_file }}" oci://ghcr.io/${REPO_LOWERCASE}
0 commit comments