Skip to content

Commit 750955f

Browse files
authored
chore: add java sdk signing information (#248)
1 parent 0430954 commit 750955f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/java-sdk.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@ jobs:
2626
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
2727
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
2828
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
29+
MAVEN_SIGNING_KEY_ID: ${{ secrets.MAVEN_SIGNING_KEY_ID }}
30+
MAVEN_SIGNING_PASSWORD: ${{ secrets.MAVEN_SIGNING_PASSWORD }}
31+
MAVEN_SIGNING_KEY: ${{ secrets.MAVEN_SIGNING_KEY }}
2932
run: |
3033
fern generate --group java-sdk --version ${{ inputs.version }} --log-level debug

fern/generators.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@ groups:
4545
coordinate: io.intercom:intercom-java
4646
username: ${MAVEN_USERNAME}
4747
password: ${MAVEN_PASSWORD}
48+
signature:
49+
keyId: ${MAVEN_SIGNING_KEY_ID}
50+
password: ${MAVEN_SIGNING_PASSWORD}
51+
secretKey: ${MAVEN_SIGNING_KEY}
4852
github:
4953
repository: intercom/intercom-java
50-
mode: pull-request
5154
config:
5255
enable-inline-types: true
5356
client-class-name: Intercom

0 commit comments

Comments
 (0)