Publish JSR #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# workflow for re-running publishing to JSR 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-jsr.yml | |
name: Publish JSR | |
on: | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: publish | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
environment: publish | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: | | |
yarn install | |
- name: Publish to JSR | |
run: | | |
bash ./bin/publish-jsr |