Skip to content

Commit 44d0947

Browse files
Fix helm release version
1 parent 05dd038 commit 44d0947

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,12 @@ jobs:
126126
username: ${{ github.actor }}
127127
password: ${{ secrets.GITHUB_TOKEN }}
128128

129+
- name: Prepare Image Name
130+
id: image_name
131+
run: |
132+
echo "name=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT
133+
129134
- name: Package and push Helm chart to OCI registry
130135
run: |
131136
helm package chart --version ${{ steps.version.outputs.version }} --app-version ${{ steps.version.outputs.version }}
132-
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

Comments
 (0)