Skip to content

Moves docs to this repo (#21) #47

Moves docs to this repo (#21)

Moves docs to this repo (#21) #47

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run build
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
registry-url: 'https://registry.npmjs.org'
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
for pkg in packages/*; do
if [ -f "$pkg/package.json" ]; then
cd $pkg
npm publish --access public || true
cd ../..
fi
done