File tree 2 files changed +38
-2
lines changed
2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Release to NPM Canary
2
+
3
+ on : workflow_dispatch
4
+
5
+ concurrency : ${{ github.workflow }}-${{ github.ref }}
6
+
7
+ jobs :
8
+ release :
9
+ name : Release
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-node@v4
14
+ with :
15
+ node-version : 20
16
+ - uses : pnpm/action-setup@v4
17
+ with :
18
+ version : 9
19
+
20
+ - name : Install dependencies
21
+ run : pnpm build:prepare
22
+ - name : Build
23
+ run : pnpm build
24
+
25
+ - name : Version changesets
26
+ run : pnpm run version
27
+ env :
28
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
+
30
+ - name : Publish to npm canary
31
+ id : changesets
32
+ uses : changesets/action@v1
33
+ with :
34
+ publish : pnpm changeset publish --tag canary
35
+ env :
36
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 36
36
title : " chore: bump packages version"
37
37
commit : " chore: bump packages version"
38
38
version : pnpm run version
39
- # This expects you to have a script called release which does a build for your packages and calls changeset publish
40
- publish : pnpm run publish
39
+ publish : pnpm changeset publish
41
40
env :
42
41
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
42
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments