Skip to content

Commit

Permalink
fix: added git user inside github action for helm release to make cha…
Browse files Browse the repository at this point in the history
…nges
  • Loading branch information
JayGhiya committed Mar 14, 2024
1 parent 8b20105 commit 3ace1ce
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/dev-pr-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
with:
ref: main
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Release Please
id: release_action_plan
uses: google-github-actions/release-please-action@v4
Expand All @@ -30,6 +34,9 @@ jobs:

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


0 comments on commit 3ace1ce

Please sign in to comment.