Release 3.1.1 #120
Workflow file for this run
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: 'Publish' | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
npm: | |
runs-on: ubuntu-latest | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
registry-url: https://registry.npmjs.org/ | |
- run: npm ci | |
# pre-releases, triggered by `next` as part of git tag | |
- run: npm publish --tag next | |
if: ${{ contains(github.ref, 'next') }} | |
# production releases | |
- run: npm publish | |
if: ${{ !contains(github.ref, 'next') }} |