Skip to content

Update node SDK from OpenAPI Generator #6

Update node SDK from OpenAPI Generator

Update node SDK from OpenAPI Generator #6

Workflow file for this run

name: publish-to-npm
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm ci --ignore-scripts
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}