1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 09:05:20 -04:00

fix publishing to GPR (hopefully?)

This commit is contained in:
Jake Jarvis 2020-05-25 14:26:29 -04:00
parent a707a4bf30
commit bc60dacf2e
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39

View File

@ -25,8 +25,9 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish --access public
- run: |
npm ci
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@ -39,7 +40,9 @@ jobs:
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish --access public
scope: '@jakejarvis'
- run: |
npm ci
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}