chore: bump package.json version (#197) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag new npm package releases | |
on: | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- plugin/package.json | |
jobs: | |
tag-npm-release: | |
name: Tag new npm package releases | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Push tag version | |
uses: ./.github/actions/tag-on-npm-version | |
with: | |
tag-prefix: 'v' | |
package-json-path: './plugin/' |