Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [0.10.2]
- Fix version pushing of auto bumping

## [0.10.1]
- Do not cd to working directory

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.1
0.10.2
3 changes: 2 additions & 1 deletion actions/npm/bump-pr-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ runs:
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}

- name: Setup Node.js
uses: actions/setup-node@v3
Expand Down Expand Up @@ -72,5 +73,5 @@ runs:

git add package.json package-lock.json || true
git commit -m "chore(release): bump $BUMP version to $NEW_VERSION [skip ci]" || echo "No version changes detected"
git push
git push origin HEAD:${{ github.head_ref }}
working-directory: ${{ inputs.working-directory }}