Skip to content

release: v2.3.0

release: v2.3.0 #32

Workflow file for this run

name: Publish
on:
push:
tags:
- v*
jobs:
Publish:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- name: Install and Build
run: |
npm ci
npm run build
- name: Deploy docs
run: bash deploy_docs.sh
env:
GH_EMAIL: [email protected]
GH_NAME: inveniobot
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Publish on NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}