Skip to content

Commit

Permalink
fix(gha): add step configure git
Browse files Browse the repository at this point in the history
  • Loading branch information
jplanckeel authored Aug 2, 2022
2 parents 90593c7 + 4d208ed commit 93791eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Configure Git
if: steps.tag.outputs.value != ''
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
if: steps.tag.outputs.value != ''
uses: helm/[email protected]
Expand Down

0 comments on commit 93791eb

Please sign in to comment.