Skip to content

Commit ccaa368

Browse files
committed
Fix release workflow OCI chart publication
1 parent 20fed88 commit ccaa368

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
- name: Push OCI chart
3737
shell: bash
3838
run: |
39+
repo_owner=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
3940
chart_file=$(find dist/charts -maxdepth 1 -name '*.tgz' | head -n 1)
40-
helm push "$chart_file" "oci://ghcr.io/${{ github.repository_owner }}/charts"
41+
helm push "$chart_file" "oci://ghcr.io/${repo_owner}/charts"
4142
4243
- name: Publish GitHub release
4344
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)