We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d99d714 + 7e12420 commit 69689d5Copy full SHA for 69689d5
.github/workflows/publish.yml
@@ -17,7 +17,14 @@ jobs:
17
with:
18
node-version: 18
19
registry-url: https://registry.npmjs.org
20
+ - name: 🧶 Print Yarn Version
21
+ run: yarn --version
22
- name: 🚀 Build & Publish
- run: yarn install && yarn build && yarn npm publish --access public
23
+ run: |
24
+ yarn config set npmAlwaysAuth true
25
+ yarn config set npmAuthToken "${NODE_AUTH_TOKEN}"
26
+ yarn install
27
+ yarn build
28
+ yarn npm publish --access public
29
env:
30
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
0 commit comments