Skip to content

v0.6.2

v0.6.2 #17

Workflow file for this run

name: Publish
on:
release:
types: [published]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
name: Publish to npm
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build -w tablinum
- name: Publish to npm
working-directory: packages/tablinum
run: npm publish --provenance --access public
env:
NPM_CONFIG_PROVENANCE: true