2022-12-29 14:45:44 +01:00
|
|
|
name: Publish to NPM
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [created]
|
|
|
|
jobs:
|
|
|
|
Publish-NPM:
|
2023-02-05 13:06:21 +01:00
|
|
|
runs-on: node1
|
2022-12-29 14:45:44 +01:00
|
|
|
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'
|
2023-02-05 13:19:24 +01:00
|
|
|
- name: Install Dependencies
|
2023-02-05 13:17:25 +01:00
|
|
|
run: npm i
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
2022-12-29 14:45:44 +01:00
|
|
|
- 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/'
|