We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20fed88 commit ccaa368Copy full SHA for ccaa368
1 file changed
.github/workflows/release.yml
@@ -36,8 +36,9 @@ jobs:
36
- name: Push OCI chart
37
shell: bash
38
run: |
39
+ repo_owner=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
40
chart_file=$(find dist/charts -maxdepth 1 -name '*.tgz' | head -n 1)
- helm push "$chart_file" "oci://ghcr.io/${{ github.repository_owner }}/charts"
41
+ helm push "$chart_file" "oci://ghcr.io/${repo_owner}/charts"
42
43
- name: Publish GitHub release
44
uses: softprops/action-gh-release@v2
0 commit comments