8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a6a230 commit 302cbfdCopy full SHA for 302cbfd
.github/workflows/publish.yml
@@ -5,17 +5,19 @@ on:
5
types: [created]
6
7
jobs:
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}}
+ publish:
+ runs-on: ubuntu-latest
+ steps:
+ - name: checkout
+ uses: actions/checkout@v3
+ - name: node
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16
+ registry-url: https://registry.npmjs.org
+ - name: 🚀 Publish
+ run: |
+ npm install --package-lock-only &&
+ npm publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
0 commit comments