We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b618af commit 2ae371dCopy full SHA for 2ae371d
.github/workflows/publish.yml
@@ -46,12 +46,12 @@ jobs:
46
47
- name: Publish with latest tag
48
if: github.event.release.prelease == false
49
- run: npm publish package.tgz --tag latest --provenance
+ run: yarn npm publish --tag latest --provenance
50
env:
51
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
52
53
- name: Publish with next tag
54
if: github.event.release.prelease == true
55
- run: npm publish package.tgz --tag next --provenance
+ run: yarn npm publish --tag next --provenance
56
57
0 commit comments