Skip to content

chore: update prettier #73

chore: update prettier

chore: update prettier #73

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# fetch all tags, so changeset tag does not create extra tags
- run: git fetch --tags origin
- uses: actions/setup-node@v6
with:
node-version: '24'
package-manager-cache: false
- uses: pnpm/action-setup@v5
- run: pnpm install --frozen-lockfile
- uses: changesets/action@v1
with:
title: 'chore: release'
commit: 'chore: bump version'
version: pnpm run version
publish: pnpm run publish
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}