File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- name : Checkout code
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
- name : Create Release
21
21
uses : softprops/action-gh-release@v1
22
22
with :
Original file line number Diff line number Diff line change @@ -13,11 +13,14 @@ jobs:
13
13
name : Publish beta on NPM.js
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
17
- - uses : actions/setup-node@v3
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-node@v4
18
18
with :
19
19
node-version : ${{env.NODE_VERSION}}
20
20
registry-url : ' https://registry.npmjs.org'
21
+ - name : Install yarn
22
+ shell : bash
23
+ run : corepack enable
21
24
- run : yarn install
22
25
- run : npm publish --tag beta
23
26
env :
Original file line number Diff line number Diff line change @@ -14,11 +14,14 @@ jobs:
14
14
name : Publish on NPM.js
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v3
18
- - uses : actions/setup-node@v3
17
+ - uses : actions/checkout@v4
18
+ - uses : actions/setup-node@v4
19
19
with :
20
20
node-version : ${{env.NODE_VERSION}}
21
21
registry-url : ' https://registry.npmjs.org'
22
+ - name : Install yarn
23
+ shell : bash
24
+ run : corepack enable
22
25
- run : yarn install
23
26
- run : npm publish --access public
24
27
env :
You can’t perform that action at this time.
0 commit comments