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 6c5668b commit 61430dbCopy full SHA for 61430db
.github/workflows/publish-package.yml
@@ -2,6 +2,7 @@ name: Publish Package to npmjs
2
on:
3
release:
4
types: [published]
5
+ workflow_dispatch:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
@@ -17,7 +18,8 @@ jobs:
17
18
registry-url: 'https://registry.npmjs.org'
19
- run: npm ci
20
- run: npm run package
- - run: cd build/package
21
- - run: npm publish --provenance --access public
+ - run: |
22
+ cd build/package
23
+ npm publish --provenance --access public
24
env:
25
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments