Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

feat: add router to model type #13

feat: add router to model type

feat: add router to model type #13

Workflow file for this run

# workflow for re-running publishing to NPM in case it fails for some reason
# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml
name: Publish NPM
on:
push:
branches:
- master
jobs:
publish:
name: publish
runs-on: ubuntu-latest
environment: publish
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: |
yarn install
- name: Publish to NPM
run: |
bash ./bin/publish-npm
env:
NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }}