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 94e7a42 commit 84e2816Copy full SHA for 84e2816
.github/workflows/build-release.yml
@@ -257,11 +257,13 @@ jobs:
257
with:
258
name: release-build
259
path: _release/
260
+ - name: Update npm
261
+ run: npm install -g npm@latest
262
- name: Publish to npm with tag ${{ github.event.inputs.tag_name }}
263
if: ${{ github.event.inputs.tag_name }}
264
working-directory: _release
- run: yarn publish --tag ${{ github.event.inputs.tag_name }}
265
+ run: npm publish --tag ${{ github.event.inputs.tag_name }}
266
- name: Publish to npm with tag latest
267
if: ${{ !github.event.inputs.tag_name }}
268
- run: yarn publish
269
+ run: npm publish
0 commit comments