From 5c6b3cc9fc7f5030966dd6902e3219ddeeeb1948 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Wed, 28 Feb 2024 17:30:21 +1100 Subject: [PATCH] chore: Fix incorrect variable references --- .gitea/workflows/actions.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index b43ca90..5ad8965 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -85,10 +85,10 @@ jobs: - name: Add target helm repository run: | helm repo add \ - --username "$GIT_USERNAME" \ - --password "$GIT_APIKEY" \ + --username ${{ secrets.GIT_USERNAME }} \ + --password ${{ secrets.GIT_APIKEY }} \ spamasaurus \ - https://code.spamasaurus.com/api/packages/$GIT_USERNAME/helm + https://code.spamasaurus.com/api/packages/${{ secrets.GIT_USERNAME }}/helm - name: Push helm chart run: | helm cm-push \