diff --git a/.github/workflows/build-and-publish-helm-charts.yml b/.github/workflows/build-and-publish-helm-charts.yml index 0b87073..7ab7856 100644 --- a/.github/workflows/build-and-publish-helm-charts.yml +++ b/.github/workflows/build-and-publish-helm-charts.yml @@ -44,7 +44,7 @@ jobs: if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && github.actor != 'dependabot[bot]' run: | echo ${{ secrets.GITHUB_TOKEN }} | helm registry login -u ${{ github.actor }} ghcr.io --password-stdin - helm push /tmp/helm-packages/kode-crd-${{ env.VERSION }}.tgz oci://ghcr.io/${{ github.repository_owner }} + helm push /tmp/helm-packages/kode-crd-${{ env.VERSION }}.tgz oci://ghcr.io/${{ github.repository_owner }}/charts - name: Copy kode to temporary directory run: cp -r helm-charts/kode /tmp/helm-charts/kode @@ -60,7 +60,7 @@ jobs: if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && github.actor != 'dependabot[bot]' run: | echo ${{ secrets.GITHUB_TOKEN }} | helm registry login -u ${{ github.actor }} ghcr.io --password-stdin - helm push /tmp/helm-packages/kode-${{ env.VERSION }}.tgz oci://ghcr.io/${{ github.repository_owner }} + helm push /tmp/helm-packages/kode-${{ env.VERSION }}.tgz oci://ghcr.io/${{ github.repository_owner }}/charts - name: Clean up temporary directory run: rm -rf /tmp/helm-charts /tmp/helm-packages