2023.02.03
This commit is contained in:
parent
d3f7064ecb
commit
eb16d5be62
2 changed files with 22 additions and 40 deletions
22
.github/workflows/npm-publish.yml
vendored
Normal file
22
.github/workflows/npm-publish.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
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/'
|
40
.github/workflows/npm-publish.yml.off
vendored
40
.github/workflows/npm-publish.yml.off
vendored
|
@ -1,40 +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'
|
|
||||||
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'
|
|
Loading…
Reference in a new issue