Fix publish workflow

This commit is contained in:
aarongrider 2021-02-23 11:13:41 -08:00
parent f433636469
commit 203b10d119
1 changed files with 1 additions and 5 deletions

View File

@ -7,21 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn
# Publish to npm
- run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v1
with:
registry-url: 'https://npm.pkg.github.com'
# Publish to GitHub Packages
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}