Skip to content

v1.8.2

v1.8.2 #29

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [published]
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
cache: npm
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
scope: '@airframes'
- run: npm ci
- run: npm run build
- run: NODE_AUTH_TOKEN="" npm publish