Skip to content

Commit

Permalink
Fix chart releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiorauber committed Jun 28, 2023
1 parent 8c7c77b commit 49c98bb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# release.yml
name: Release Charts
on:
push:
Expand All @@ -11,16 +10,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
fetch-depth: 0]

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.8.1
- name: Run chart-releaser

- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 49c98bb

Please sign in to comment.