Skip to content

2026-02-03 15:04:54: merge [main:83dd1e60c7f61c5ddd81544538228e1d8c04… #62

2026-02-03 15:04:54: merge [main:83dd1e60c7f61c5ddd81544538228e1d8c04…

2026-02-03 15:04:54: merge [main:83dd1e60c7f61c5ddd81544538228e1d8c04… #62

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