diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ea410d..a5b07ce 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,18 +15,22 @@ jobs: - name: Checkout uses: actions/checkout@v4 with: { fetch-depth: 0 } + - name: Configure git run: | git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + - name: Setup helm uses: azure/setup-helm@v3 with: { version: v3.13.2 } + - name: Add dependency chart repos run: | helm repo add minicloudlabs https://minicloudlabs.github.io/helm-charts + - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.5.0 + uses: helm/chart-releaser-action@v1.6.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_SKIP_EXISTING: "true"