Extract from 05b898af12d06e4c2eac677cb8b437eb9298562d #270
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 }} |