Skip to content

Workflow file for this run

name: Publish package version to npmjs
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
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: '18.x'
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
- name: Install npm dependencies
run: npm install --immutable
- name: Build package
run: npm run build
- name: Publish package to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}