Skip to content

v1.8.1

v1.8.1 #13

Workflow file for this run

name: Publish
on:
release:
types: [created]
permissions:
contents: read
id-token: write # for provenance and publish access
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout the project
uses: actions/checkout@v3
- name: Use Node.js 24.x (LTS)
uses: actions/setup-node@v3
with:
node-version: 24.x
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npm test
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- run: npm publish --provenance