-
Notifications
You must be signed in to change notification settings - Fork 12
42 lines (36 loc) · 1.08 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
# https://docs.github.com/en/actions/using-workflows/about-workflows
name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout Repo
uses: actions/checkout@v2
# https://github.com/actions/setup-node
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
# https://github.com/pnpm/action-setup
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x
# https://pnpm.io/zh/cli/install#--frozen-lockfile
- name: Install Dependencies
run: pnpm install --frozen-lockfile
# https://github.com/changesets/action
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: pnpm release
version: pnpm version-packages
commit: 'chore: version packages'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}