Skip to content

Commit feca43f

Browse files
committed
fix: lowercase for oci repo name
1 parent b70680a commit feca43f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/helm-publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
id: meta
2525
run: |
2626
VERSION=${GITHUB_REF_NAME#chart/v}
27+
OWNER="${{ github.repository_owner }}"
2728
echo "version=$VERSION" >> $GITHUB_OUTPUT
2829
echo "tag=chart/v$VERSION" >> $GITHUB_OUTPUT
29-
echo "oci_repo=oci://${{ env.REGISTRY }}/${{ github.repository_owner }}/charts" >> $GITHUB_OUTPUT
30+
echo "oci_repo=oci://${{ env.REGISTRY }}/${OWNER,,}/charts" >> $GITHUB_OUTPUT
3031
3132
- name: Set up Helm
3233
uses: azure/setup-helm@v4

0 commit comments

Comments
 (0)