forked from unkeyed/unkey
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 974 Bytes
/
changesets.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 }}