Updated publish.yml
parent
83f87e6bab
commit
837ef48bf9
|
@ -12,7 +12,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: '12.x'
|
||||||
always-auth: true
|
always-auth: true
|
||||||
- run: yarn install
|
- run: yarn install
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: '12.x'
|
||||||
registry-url: https://npm.pkg.github.com/
|
registry-url: https://npm.pkg.github.com/
|
||||||
scope: '@MillenniumEarl'
|
scope: '@MillenniumEarl'
|
||||||
always-auth: true
|
always-auth: true
|
||||||
|
@ -34,3 +34,18 @@ jobs:
|
||||||
- run: yarn publish
|
- run: yarn publish
|
||||||
env:
|
env:
|
||||||
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
|
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
|
||||||
|
publich-npm:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
# Setup .npmrc file to publish to npm
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: '12.x'
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm publish
|
||||||
|
env:
|
||||||
|
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue