Skip to content

1.4.0

1.4.0 #6

Workflow file for this run

name: Node.js Package
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Build Code
run: npm ci && npm run compile
- name: Publish Package
run: cd build && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}