From 53ce309719990bf20d5fc8e09787ba98277bd1b5 Mon Sep 17 00:00:00 2001 From: Anthony Clerici Date: Mon, 9 Mar 2026 00:00:20 -0700 Subject: [PATCH] fix(chart): use docker login for helm and cosign --- .github/workflows/helm-chart.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm-chart.yml b/.github/workflows/helm-chart.yml index 11769ead..b3f6ea06 100644 --- a/.github/workflows/helm-chart.yml +++ b/.github/workflows/helm-chart.yml @@ -34,7 +34,11 @@ jobs: - name: Login to GHCR if: steps.check.outputs.new == 'true' - run: echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ghcr.io -u versity --password-stdin + uses: docker/login-action@v4 + with: + registry: ghcr.io + username: versity + password: ${{ secrets.GITHUB_TOKEN }} - name: Push chart if: steps.check.outputs.new == 'true'