Skip to content

Commit

Permalink
fix: no condition commit workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aeppling committed Sep 17, 2024
1 parent 58cedb3 commit 6594b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fullrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Commit and push changes
if: ${{ needs.semantic-release.outputs.ver }}
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git add charts/kexa-chart/Chart.yaml
git commit -m "chore(release): update Chart.yaml version to ${{ steps.ver.outputs.nextVersion }}"
git commit -m "chore(release): update Chart.yaml version"
git push origin main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 6594b20

Please sign in to comment.