From 61139207fcf7a7ffcee52a448721c509f7c0a0d8 Mon Sep 17 00:00:00 2001 From: Killer Boss Original <73131550+killerbossoriginal@users.noreply.github.com> Date: Thu, 29 Dec 2022 14:45:44 +0100 Subject: [PATCH] Update and rename main.yml to npm-publish.yml --- .github/workflows/main.yml | 21 ---------------- .github/workflows/npm-publish.yml | 40 +++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 21 deletions(-) delete mode 100644 .github/workflows/main.yml create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index c73673e..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Publish to NPM -on: - release: - types: [created] -jobs: - Publish-NPM: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' - - name: Publish package on NPM 📦 - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - REGISTRY1: 'registry.npmjs.org' - REGISTRY2: 'registry=https://registry.npmjs.org/' diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..83fa8a7 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,40 @@ +name: Publish to NPM +on: + release: + types: [created] +jobs: + Publish-NPM: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '16.x' + registry-url: 'https://registry.npmjs.org' + scope: '@thundernetworkrad' + - name: Publish package on NPM 📦 + run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + REGISTRY1: 'registry.npmjs.org' + REGISTRY2: 'registry=https://registry.npmjs.org/' + + Publish-GitHub-NPM: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '16.x' + registry-url: 'https://npm.pkg.github.com' + scope: '@thundernetworkrad' + - name: Publish package on NPM 📦 + run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.GP_TOKEN }} + REGISTRY1: 'npm.pkg.github.com' + REGISTRY2: '@thundernetworkrad:registry=https://npm.pkg.github.com'