File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ repository_dispatch :
3
+ types : [spec_release]
4
+ on : push
5
+
6
+ name : Build & release
7
+
8
+ jobs :
9
+ build-and-release :
10
+ runs-on : ubuntu-latest
11
+ name : Release
12
+ steps :
13
+ - name : Checkout
14
+ uses : actions/checkout@v4
15
+
16
+ - uses : pnpm/action-setup@v4
17
+ name : Install pnpm
18
+ with :
19
+ version : 10
20
+ run_install : false
21
+
22
+ - name : Install Node.js
23
+ uses : actions/setup-node@v4
24
+ with :
25
+ node-version : 20
26
+ cache : ' pnpm'
27
+
28
+ - name : Install dependencies
29
+ run : pnpm install
30
+
31
+ - run : |
32
+ pnpm publish --provenance
33
+ env:
34
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vrchat" ,
3
- "version" : " 1.19.4" ,
3
+ "version" : " 1.19.4-alpha.0 " ,
4
4
"type" : " module" ,
5
5
"description" : " " ,
6
6
"main" : " dist/index.js" ,
You can’t perform that action at this time.
0 commit comments