Skip to content

chore(release): publish 0.10.0 #1

chore(release): publish 0.10.0

chore(release): publish 0.10.0 #1

Workflow file for this run

name: Publish
on:
push:
tags:
- v*.*.*
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- run: pnpm install --frozen-lockfile
- run: pnpm exec nx build
- run: pnpm exec nx report
shell: bash
- run: pnpm exec nx release publish
shell: bash