File tree 4 files changed +45
-10
lines changed
4 files changed +45
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Release Java SDK
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : " The version of the SDKs that you would like to release"
8
+ required : true
9
+ type : string
10
+
11
+ jobs :
12
+ release :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout repo
16
+ uses : actions/checkout@v3
17
+
18
+ - name : Setup node
19
+ uses : actions/setup-node@v4
20
+
21
+ - name : Download Fern
22
+ run : npm install -g fern-api
23
+
24
+ - name : Release SDKs
25
+ env :
26
+ FERN_TOKEN : ${{ secrets.FERN_TOKEN }}
27
+ MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
28
+ MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
29
+ run : |
30
+ fern generate --group java-sdk --version ${{ inputs.version }} --log-level debug
Original file line number Diff line number Diff line change 1
1
{
2
2
"organization" : " intercom" ,
3
- "version" : " 0.56.19 "
3
+ "version" : " 0.57.17 "
4
4
}
Original file line number Diff line number Diff line change @@ -39,17 +39,17 @@ groups:
39
39
java-sdk :
40
40
generators :
41
41
- name : fernapi/fern-java-sdk
42
- version : 2.25.0
43
- # output:
44
- # location: maven
45
- # coordinate: com.square:square -java
46
- # username: ${MAVEN_USERNAME}
47
- # password: ${MAVEN_PASSWORD}
42
+ version : 2.32.4
43
+ output :
44
+ location : maven
45
+ coordinate : io.intercom:intercom -java
46
+ username : ${MAVEN_USERNAME}
47
+ password : ${MAVEN_PASSWORD}
48
48
github :
49
- repository : fern-demo/intercom-java-sdk
50
- branch : gettin-tests-to-work
51
- mode : push
49
+ repository : intercom/intercom-java
50
+ mode : pull-request
52
51
config :
53
52
enable-inline-types : true
54
53
client-class-name : Intercom
55
54
inline-path-parameters : true
55
+ # enable-forward-compatible-enums: true
Original file line number Diff line number Diff line change @@ -1388,6 +1388,11 @@ components:
1388
1388
format : uri
1389
1389
description : An image URL containing the avatar of a contact.
1390
1390
example : https://example.org/128Wash.jpg
1391
+ content_source :
1392
+ properties :
1393
+ content_type :
1394
+ enum :
1395
+ - custom_answer
1391
1396
create_article_request :
1392
1397
properties :
1393
1398
parent_type :
You can’t perform that action at this time.
0 commit comments