File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change 55 types : [created]
66
77jobs :
8- publish :
9- runs-on : ubuntu-latest
10- steps :
11- - name : checkout
12- uses : actions/checkout@v3
13- - name : node
14- uses : actions/setup-node@v3
15- with :
16- node-version : 16
17- registry-url : https://registry.npmjs.org
18- - name : 🚀 Publish
19- run : yarn publish --access public
20- env :
21- NODE_AUTH_TOKEN : ${{secrets.npm_token}}
8+ publish :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : checkout
12+ uses : actions/checkout@v3
13+ - name : node
14+ uses : actions/setup-node@v3
15+ with :
16+ node-version : 16
17+ registry-url : https://registry.npmjs.org
18+ - name : 🚀 Publish
19+ run : |
20+ npm install --package-lock-only &&
21+ npm publish --access public
22+ env :
23+ NODE_AUTH_TOKEN : ${{secrets.npm_token}}
You can’t perform that action at this time.
0 commit comments