Skip to content

Merge branch 'main' into beta #46

Merge branch 'main' into beta

Merge branch 'main' into beta #46

Workflow file for this run

name: Publish
on:
push:
branches:
- main
- beta
jobs:
publish:
name: Publish to GitHub and npm
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Publish release
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release