Skip to content

2026-01-28 12:58:30: merge [main:f4b579cbdc526760ffbf845546d6400a7389… #65

2026-01-28 12:58:30: merge [main:f4b579cbdc526760ffbf845546d6400a7389…

2026-01-28 12:58:30: merge [main:f4b579cbdc526760ffbf845546d6400a7389… #65

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