Skip to content

feat: complete button family parity pass #11

feat: complete button family parity pass

feat: complete button family parity pass #11

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
id-token: write
concurrency:
group: changesets-release-${{ github.ref }}
cancel-in-progress: false
jobs:
release:
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
cache: "pnpm"
- name: Upgrade npm for trusted publishing
run: npm install -g npm@^11.5.1
- name: Install dependencies
run: vp install --frozen-lockfile
- name: Create release PR or publish packages
id: changesets
uses: changesets/action@v1
with:
commit: "chore(release): version packages"
title: "chore(release): version packages"
version: vp run changeset:version
publish: vp run changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}