From 33db7776d3a095355e3267940ef2a7803a0d408e Mon Sep 17 00:00:00 2001 From: Olof Pettersson Date: Wed, 10 Dec 2025 21:56:41 +0100 Subject: [PATCH] Authenticate as repository owner --- .gitea/workflows/publish-chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish-chart.yaml b/.gitea/workflows/publish-chart.yaml index df4ee25..0f5bfb4 100644 --- a/.gitea/workflows/publish-chart.yaml +++ b/.gitea/workflows/publish-chart.yaml @@ -32,7 +32,7 @@ jobs: run: | # Gitea automatically provides the token and actor variables echo ${{ secrets.REPOSITORY_TOKEN }} | helm registry login ${{ env.REGISTRY_HOST }} \ - --username ${{ gitea.actor }} \ + --username ${{ gitea.repository_owner }} \ --password-stdin - name: Push to Gitea Registry @@ -46,4 +46,4 @@ jobs: # Push to the OCI registry # URL Format: oci:////charts - helm push $CHART_FILE oci://$DOMAIN/${{ gitea.actor }}/charts \ No newline at end of file + helm push $CHART_FILE oci://$DOMAIN/${{ gitea.repository_owner }}/charts \ No newline at end of file