-
-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (36 loc) · 1.07 KB
/
release.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
38
39
40
41
42
43
# 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:
- dev
pull_request:
branches:
- dev
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
pr:
name: Release Packages
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '21.6.1'
- name: Install
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn 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: yarn bump-versions
publish: yarn changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}