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 0086ae9 commit 8be6869Copy full SHA for 8be6869
.github/workflows/publish.yml
@@ -6,12 +6,13 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v2.3.1
10
- - uses: actions/setup-node@v1.4.2
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
11
with:
12
node-version: '12.x'
13
- registry-url: 'https://npm.pkg.github.com'
+ registry-url: 'https://registry.npmjs.org'
14
- run: npm install
15
- - run: npm publish
+ - run: npm build
16
+ - run: npm publish --access public
17
env:
- NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments