Extract from d6975535845cf4903655e4496bdea395ce8af51d #264
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 & Publish to npm | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
master: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v2 | |
- name: Create tag | |
run: | | |
git config --global user.email "[email protected]" && \ | |
git config --global user.name "Github Actions" && \ | |
git tag -a v$(node .github/workflows/get-version.js) -m "Version $(node .github/workflows/get-version.js)" | |
- name: Push tag | |
run: git push origin v$(node .github/workflows/get-version.js) | |
- name: Prepare node to Publish | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install node modules | |
run: npm ci | |
- name: Publish package to NPM | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |