-
Notifications
You must be signed in to change notification settings - Fork 524
43 lines (37 loc) · 1.16 KB
/
release.yml
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
name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
issues: write
repository-projects: write
deployments: write
packages: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
+ token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
- uses: ./.github/actions/setup
- name: Build packages
run: pnpm run build
- name: PR or Publish
id: changesets
uses: changesets/action@v1
with:
# Note: Our `package.json:scripts.version` currently doesn't have `--fix-lockfile` for
# `pnpm install` because of a PNPM bug of some kind.
# See spectacle issue: https://github.com/FormidableLabs/spectacle/issues/1156
version: pnpm run version
publish: pnpm run publish
env:
# Note: we are using a different GITHUB_TOKEN due to the issues in this thread:
# https://github.com/changesets/action/issues/187
GITHUB_TOKEN: ${{ secrets.CHANGESETS_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}