Skip to content

update dependencies #52

update dependencies

update dependencies #52

Workflow file for this run

name: Publish Node SDK Package to NPM
on:
push:
branches: [master]
workflow_dispatch:
jobs:
publish-gpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout/@v2
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: 'https://registry.npmjs.org'
scope: "@bcc-code"
- run: npm install
- run: npm run build
- run: npm publish --tag latest --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}