Skip to content

release: v3.0.0

release: v3.0.0 #33

Workflow file for this run

name: Publish
on:
push:
tags:
- v*
jobs:
Publish:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
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}}