Skip to content

Commit

Permalink
use correct shell for script
Browse files Browse the repository at this point in the history
  • Loading branch information
mholtzman committed Sep 14, 2023
1 parent db7fb7a commit 93942b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/post-publish-update-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Update application version after release has been published
on:
release:
types: [published]
workflow_dispatch:

jobs:
bump_release:
Expand All @@ -15,3 +14,10 @@ jobs:
id: update-version
shell: bash
run: ./scripts/update-version.sh
- name: Commit & Push new version
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git commit -am "chore: update version"
git push

0 comments on commit 93942b9

Please sign in to comment.