diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 48a2acb..16bb952 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -20,4 +20,9 @@ jobs: - run: echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list - run: sudo apt update - run: sudo apt install helm --yes - - run: echo $REPO_PASSWORD | helm registry login https://$REPO_HOST --username $REPO_USERNAME --password-stdin + - shell: bash + env: + REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }} + REPO_HOST: ${{ secrets.REPO_HOST }} + - run: | + echo $REPO_PASSWORD | helm registry login https://$REPO_HOST --username $REPO_USERNAME --password-stdin