We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05dd038 commit 44d0947Copy full SHA for 44d0947
1 file changed
.github/workflows/release.yaml
@@ -126,7 +126,12 @@ jobs:
126
username: ${{ github.actor }}
127
password: ${{ secrets.GITHUB_TOKEN }}
128
129
+ - name: Prepare Image Name
130
+ id: image_name
131
+ run: |
132
+ echo "name=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT
133
+
134
- name: Package and push Helm chart to OCI registry
135
run: |
136
helm package chart --version ${{ steps.version.outputs.version }} --app-version ${{ steps.version.outputs.version }}
- helm push flux-extension-controller-${{ steps.version.outputs.version }}.tgz oci://${{ env.REGISTRY }}/${{ github.repository }}/charts
137
+ helm push flux-extension-controller-${{ steps.version.outputs.version }}.tgz oci://${{ steps.image_name.outputs.name }}/charts
0 commit comments