Skip to content

Merge branch 'master' into release #29

Merge branch 'master' into release

Merge branch 'master' into release #29

Workflow file for this run

name: Publish
on:
push:
branches: release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: https://registry.npmjs.org/
scope: netatwork
- run: npm ci
- run: npm publish --access=public --@netatwork:registry=https://registry.npmjs.org/
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}