Skip to content

1.23.2

1.23.2 #6

Workflow file for this run

name: Publish
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install the latest version of the npm CLI
run: npm install -g npm@latest
- name: Install dependencies and build
run: |
npm ci
npm run build
- name: Publish the package
run: |
npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}