Skip to content

chore(release): publish #30

chore(release): publish

chore(release): publish #30

Workflow file for this run

name: Build toolchain
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
if: ${{ github.ref_type == 'tag' }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Publish npm package
run: |
npm install -g npm
yarn workspaces foreach -A -t exec "npm publish --access public"