Skip to content

Commit

Permalink
change commit msg
Browse files Browse the repository at this point in the history
  • Loading branch information
oshribr committed Nov 3, 2024
1 parent 81621d0 commit d4a873e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
changed_charts: ${{ steps.chart-releaser.outputs.changed_charts }}
chart_version: ${{ steps.chart-releaser.outputs.chart_version }}

steps:
- name: Checkout Code
Expand All @@ -23,7 +24,7 @@ jobs:
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/[email protected]
with:
Expand Down Expand Up @@ -56,10 +57,10 @@ jobs:

- name: Commit and Push
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git config --local user.email "$GITHUB_ACTOR"
git config --local user.name "[email protected]"
git add index.html
git commit -m "Update Helm charts page" || exit 0 # Don't fail if no changes
git commit -m "Update Helm charts page version ${{ needs.release.outputs.changed_charts }}" || exit 0 # Don't fail if no changes
git push
deploy:
Expand Down

0 comments on commit d4a873e

Please sign in to comment.