Skip to content

v2.6.0

v2.6.0 #43

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
publish-npm:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
- name: Install NPM packages
run: npm ci
- name: Build project
run: npm run build
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}