Skip to content

Release 1.3.18

Release 1.3.18 #3

Workflow file for this run

name: CI Deploy
on:
push:
tags:
- '*'
jobs:
deploy:
name: Release new version to NPM
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '17'
registry-url: 'https://registry.npmjs.org'
- run: npm ci --legacy-peer-deps
- run: npm run build
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}