Skip to content

Commit

Permalink
Update versionPatch.yml
Browse files Browse the repository at this point in the history
Fix git push step
  • Loading branch information
mdgfox authored Feb 8, 2024
1 parent 590da9b commit 8bd9a7e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/versionPatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
- name: manifest.json vesion patch
run: |
npx dot-json@1 ./public/manifest.json version "${{ steps.get-new-version.outputs.version }}"
- name: Update git
- name: Git Push diff
run: |
git push
git push --tags
git add .
git commit -m ":thumbsup: Bump up to v$(grep version package.json | awk -F \" '{print $4}')"
git push origin HEAD
shell: bash

0 comments on commit 8bd9a7e

Please sign in to comment.