Skip to content

Commit

Permalink
fix: missing add repo step from chart-releaser workflow
Browse files Browse the repository at this point in the history
The chart releaser action failed as the dependency repository was not added to helm.
  • Loading branch information
almadigabor authored Jul 12, 2023
1 parent 93f9ade commit 08c36f9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/chart-releaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Add Helm dependency repositories
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/[email protected]
Expand Down

0 comments on commit 08c36f9

Please sign in to comment.