We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d3b697 commit 09c8d5aCopy full SHA for 09c8d5a
.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