Skip to content

Fix npm package to include UI build in dist/ui/, bump to 1.0.4 #2

Fix npm package to include UI build in dist/ui/, bump to 1.0.4

Fix npm package to include UI build in dist/ui/, bump to 1.0.4 #2

Workflow file for this run

name: Publish npm Package
on:
push:
tags: ['v*']
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org
- run: npm ci
- run: cd ui && npm ci
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}