Skip to content

chore: merge

chore: merge #2004

Workflow file for this run

# most of this is copied from https://github.com/t3-oss/create-t3-app/blob/next/.github/workflows/release.yml
name: Prepare Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
pr:
name: Release Packages
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install
uses: ./.github/actions/install
with:
ts: true
- name: Build packages
run: pnpm turbo run build --filter='./packages/*'
- name: Create Version PR or Publish to NPM
id: changesets
uses: changesets/[email protected]
with:
commit: "chore(release): version packages"
title: "chore(release): version packages"
version: pnpm bump-versions
publish: pnpm changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}