From 837ef48bf9b711559fac2d532213f8a10ed6fa37 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Sun, 22 Nov 2020 12:33:19 +0100 Subject: [PATCH] Updated publish.yml --- .github/workflows/publish.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b17e760..4d662cd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: '12.x' always-auth: true - run: yarn install @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: '12.x' registry-url: https://npm.pkg.github.com/ scope: '@MillenniumEarl' always-auth: true @@ -34,3 +34,18 @@ jobs: - run: yarn publish env: 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}} + +