Skip to content

Bump to 3.1.0

Bump to 3.1.0 #13

Workflow file for this run

name: Publish
env:
VERSION: 3.0.1
NODE_VERSION: '16.14.2'
on:
push:
tags:
- "*"
- "!*beta*"
jobs:
publish:
name: Publish on NPM.js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{env.NODE_VERSION}}
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}