File tree Expand file tree Collapse file tree 8 files changed +23
-8
lines changed Expand file tree Collapse file tree 8 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 20
20
repo : ${{ github.event.repository.full_name }}
21
21
stainless-api-key : ${{ secrets.STAINLESS_API_KEY }}
22
22
23
+ - name : Generate a token
24
+ id : generate_token
25
+ uses : actions/create-github-app-token@v1
26
+ with :
27
+ app-id : ${{ secrets.APP_ID }}
28
+ private-key : ${{ secrets.APP_PRIVATE_KEY }}
29
+ owner : ' openai'
30
+ repositories : ' openai-node,openai-deno-build'
31
+
23
32
- name : Set up Node
24
33
if : ${{ steps.release.outputs.releases_created }}
25
34
uses : actions/setup-node@v3
48
57
if : ${{ steps.release.outputs.releases_created }}
49
58
run : |
50
59
bash ./scripts/git-publish-deno.sh
51
- env : {}
60
+ env :
61
+ DENO_PUSH_REMOTE_URL : https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git
62
+ DENO_PUSH_BRANCH : main
Original file line number Diff line number Diff line change 11
11
environment : publish
12
12
13
13
steps :
14
+ - uses : actions/checkout@v3
15
+
14
16
- name : Generate a token
15
17
id : generate_token
16
18
uses : actions/create-github-app-token@v1
20
22
owner : ' openai'
21
23
repositories : ' openai-node,openai-deno-build'
22
24
23
- - uses : actions/checkout@v3
24
-
25
25
- name : Set up Node
26
26
uses : actions/setup-node@v3
27
27
with :
Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 4.19.0 "
2
+ "." : " 4.19.1 "
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 4.19.1 (2023-11-20)
4
+
5
+ Full Changelog: [ v4.19.0...v4.19.1] ( https://github.com/openai/openai-node/compare/v4.19.0...v4.19.1 )
6
+
3
7
## 4.19.0 (2023-11-15)
4
8
5
9
Full Changelog: [ v4.18.0...v4.19.0] ( https://github.com/openai/openai-node/compare/v4.18.0...v4.19.0 )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ You can import in Deno via:
21
21
<!-- x-release-please-start-version -->
22
22
23
23
``` ts
24
- import OpenAI from ' https://deno.land/x/openai@v4.19.0 /mod.ts' ;
24
+ import OpenAI from ' https://deno.land/x/openai@v4.19.1 /mod.ts' ;
25
25
```
26
26
27
27
<!-- x-release-please-end -->
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g
14
14
Usage:
15
15
16
16
\`\`\` ts
17
- import OpenAI from "https://deno.land/x/openai@v4.19.0 /mod.ts";
17
+ import OpenAI from "https://deno.land/x/openai@v4.19.1 /mod.ts";
18
18
19
19
const client = new OpenAI();
20
20
\`\`\`
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " openai" ,
3
- "version" : " 4.19.0 " ,
3
+ "version" : " 4.19.1 " ,
4
4
"description" : " Client library for the OpenAI API" ,
5
5
"author" : " OpenAI <support@openai.com>" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change 1
- export const VERSION = '4.19.0 ' ; // x-release-please-version
1
+ export const VERSION = '4.19.1 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments