Skip to content

Use node 20 for publish workflow #4

Use node 20 for publish workflow

Use node 20 for publish workflow #4

Workflow file for this run

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