KSD-31: Improve email comparisons for profile deduplication (#250) #8
This file contains hidden or 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@v4 | |
| - name: Push tag version | |
| uses: ./.github/actions/tag-on-npm-version | |
| with: | |
| tag-prefix: 'v' | |
| package-json-path: './plugin/' |