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
1 change: 1 addition & 0 deletions .github/actions/bump-versions-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ runs:
# Bump versions using the built-in git token https://github.com/actions/checkout/tree/v4/?tab=readme-ov-file#push-a-commit-using-the-built-in-token
shell: bash
run: |
cd ${GITHUB_ACTION_PATH}/../../..
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
npm run bump-versions -- ${{ inputs.newVersion }}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:

- name: Bump repo versions
if: ${{ inputs.newVersionAfterPublishing != '' }}
uses: ./.github/actions/bump-versions-action
uses: ./extension-repo/.github/actions/bump-versions-action
with:
newVersion: ${{ inputs.newVersionAfterPublishing }}

Expand Down