Commit 4386fd2 1 parent 12d14c2 commit 4386fd2 Copy full SHA for 4386fd2
File tree 6 files changed +2503
-546
lines changed
6 files changed +2503
-546
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: release
3
3
on :
4
4
push :
5
5
tags :
6
- - " *-beta.*"
6
+ - ' *-beta.*'
7
7
8
8
jobs :
9
9
publish_beta :
18
18
19
19
- uses : actions/setup-node@v4
20
20
with :
21
- node-version : " 18.x"
22
- registry-url : " https://registry.npmjs.org"
23
- cache : " pnpm"
21
+ node-version : ' 18.x'
22
+ registry-url : ' https://registry.npmjs.org'
23
+ cache : ' pnpm'
24
24
25
25
- name : Install dependencies
26
26
run : pnpm i
30
30
31
31
- name : Publish
32
32
run : |
33
- pnpm release - -tag beta
33
+ pnpm publish:ci --dist -tag beta
34
34
env :
35
35
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: release
3
3
on :
4
4
push :
5
5
tags-ignore :
6
- - " *-beta.*"
6
+ - ' *-beta.*'
7
7
8
8
jobs :
9
9
publish :
18
18
19
19
- uses : actions/setup-node@v4
20
20
with :
21
- node-version : " 18.x"
22
- registry-url : " https://registry.npmjs.org"
23
- cache : " pnpm"
21
+ node-version : ' 18.x'
22
+ registry-url : ' https://registry.npmjs.org'
23
+ cache : ' pnpm'
24
24
25
25
- name : Install dependencies
26
26
run : pnpm i
30
30
31
31
- name : Publish
32
32
run : |
33
- pnpm release
33
+ pnpm publish:ci
34
34
env :
35
35
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " node_modules/@lerna-lite/cli/schemas/lerna-schema.json" ,
3
+ "version" : " 0.0.6" ,
4
+ "changelogPreset" : " angular" ,
5
+ "npmClient" : " pnpm" ,
6
+ "packages" : [" packages/*" ]
7
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " adex-root" ,
3
- "version" : " 0.0.0" ,
4
3
"type" : " module" ,
5
4
"private" : true ,
6
5
"description" : " " ,
10
9
"scripts" : {
11
10
"play" : " pnpm --filter='playground' -r dev" ,
12
11
"test" : " echo 'true'" ,
13
- "release" : " pnpm -r publish --no-git-checks --filter='!playground'"
12
+ "publish:ci" : " lerna publish from-git --registry 'https://registry.npmjs.org' --yes" ,
13
+ "next" : " lerna version --sync-workspace-lock"
14
14
},
15
15
"license" : " MIT" ,
16
16
"prettier" : " @barelyhuman/prettier-config" ,
17
17
"devDependencies" : {
18
- "@changesets/cli" : " ^2.27.7" ,
19
18
"@barelyhuman/prettier-config" : " ^1.1.0" ,
19
+ "@lerna-lite/cli" : " ^3.7.1" ,
20
+ "@lerna-lite/publish" : " ^3.7.1" ,
21
+ "@lerna-lite/version" : " ^3.7.1" ,
20
22
"prettier" : " ^3.3.2"
21
23
}
22
24
}
You can’t perform that action at this time.
0 commit comments