Skip to content

Commit

Permalink
ci: remember to git push after amending
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordfirespeed committed Aug 10, 2024
1 parent c989295 commit ee7b204
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- run: pnpm check:fix
- run: git add . && git commit --amend --no-edit
- run: |
git add .
git commit --amend --no-edit
git push --force
- if: steps.changesets.outputs.published == 'true'
run: echo "(a) new version(s) was/were published!"
run: echo "(a) new version(s) was/were published!"

0 comments on commit ee7b204

Please sign in to comment.