Skip to content

2.1.1

2.1.1 #30

Workflow file for this run

name: Publish
on:
release:
types:
- published
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn run release
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}