Skip to content

Workflow file for this run

# name: Node.js Package
# on:
# release:
# types: [created]
# jobs:
# publish-gpr:
# runs-on: ubuntu-latest
# permissions:
# packages: write
# contents: read
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# registry-url: https://npm.pkg.github.com/
# - run: npm i
# - run: npm run build
# - run: npm run client:i
# - run: npm run client:build
# - run: npm run client:copy
# - run: npm run cli:build
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}