Skip to content

Release

Release #77

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch: {}
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- name: Checkout Repo
uses: actions/checkout@v6
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 22
cache: "pnpm"
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build library
run: pnpm build:lib
- name: Build d.ts files
run: pnpm build:lib:dts
- name: Publishing next version
run: ./publish/publish-next.js
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}