Skip to content

Commit

Permalink
Merge pull request #10 from github/fix-helm-push-step
Browse files Browse the repository at this point in the history
Remove extra path when pushing to GHCR with Helm
  • Loading branch information
malancas authored Jun 4, 2024
2 parents df146ca + c3b8d8f commit bd9d504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ${{ env.REGISTRY }} -u ${{ github.actor }} --password-stdin
- name: Push packaged chart to GHCR
run: helm push ${{ github.ref_name }}.tgz oci://${{ env.REGISTRY }}/${{ github.repository }}/${{ steps.release-details.outputs.chart_name }}
run: helm push ${{ github.ref_name }}.tgz oci://${{ env.REGISTRY }}/${{ github.repository }}
- name: Get pushed chart digest
id: get-digest
run: |
Expand Down

0 comments on commit bd9d504

Please sign in to comment.