Skip to content

2026-06-18 12:42:56: merge [main:8672093ed88bbbde4a71e2f472063a882630… #84

2026-06-18 12:42:56: merge [main:8672093ed88bbbde4a71e2f472063a882630…

2026-06-18 12:42:56: merge [main:8672093ed88bbbde4a71e2f472063a882630… #84

Workflow file for this run

name: Publish Package to npmjs
on:
push:
tags:
- 'v*'
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install optional rollup binary
run: npm install @rollup/rollup-linux-x64-gnu --save-optional
- name: Update npm
run: npm install -g npm@latest
- run: npm ci
- run: npm run build --if-present
- run: npm publish