File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,26 @@ jobs:
16
16
contents : write
17
17
pull-requests : write
18
18
steps :
19
- - uses : actions/checkout@v4
20
- - uses : actions/setup-node@v4
19
+ - name : Git setup
20
+ uses : actions/checkout@v4
21
+
22
+ - name : Node setup
23
+ uses : actions/setup-node@v4
21
24
with :
22
25
node-version : 22
23
- - uses : pnpm/action-setup@v4
26
+
27
+ - name : pnpm setup
28
+ uses : pnpm/action-setup@v4
24
29
with :
25
30
version : 9.14.4
26
31
run_install : true
27
- - uses : changesets/action@v1
32
+
33
+ # Do not remove! This ensures a build happens every time
34
+ - name : Build all packages
35
+ run : pnpm run build
36
+
37
+ - name : Changesets version and/or publish
38
+ uses : changesets/action@v1
28
39
with :
29
40
version : pnpm run version
30
41
publish : pnpm exec changeset publish
You can’t perform that action at this time.
0 commit comments