Skip to content

Commit aed2587

Browse files
fix(ci): release-doctor — report correct token name
1 parent 6cc5e96 commit aed2587

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/publish-jsr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# workflow for re-running publishing to JSR in case it fails for some reason
2-
# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-jsr.yml
1+
# This workflow publishes the package to JSR.
2+
# You can run this workflow manually by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-jsr.yml
33
name: Publish JSR
44
on:
55
workflow_dispatch:

.github/workflows/publish-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# workflow for re-running publishing to NPM in case it fails for some reason
2-
# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml
1+
# This workflow publishes the package to NPM.
2+
# You can run this workflow manually by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml
33
name: Publish NPM
44
on:
55
workflow_dispatch:

bin/check-release-environment

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ -z "${STAINLESS_API_KEY}" ]; then
77
fi
88

99
if [ -z "${NPM_TOKEN}" ]; then
10-
errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets")
10+
errors+=("The NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets")
1111
fi
1212

1313
lenErrors=${#errors[@]}

0 commit comments

Comments
 (0)