Skip to content

v0.8.1

v0.8.1 #11

Workflow file for this run

name: Create Release CI
on:
push:
tags:
- v*
jobs:
PUBLISH:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: git fetch --prune
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: npm run build
- run: npm run lerna:publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}