-
Notifications
You must be signed in to change notification settings - Fork 89
40 lines (35 loc) · 1.11 KB
/
Copy pathrelease-java-sdk.yml
File metadata and controls
40 lines (35 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Release Java SDK
on:
workflow_call:
inputs:
makePR:
description: "Compatibility input; SDK releases always open pull requests for manual approval"
default: true
type: boolean
version:
description: "The version of the Java SDK that you would like to release"
required: true
type: string
workflow_dispatch:
inputs:
version:
description: "The version of the Java SDK that you would like to release"
required: true
type: string
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
- name: Download Fern
run: npm install -g fern-api
- name: Release Java SDK
env:
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
run: |
fern generate --api api --group java-sdk --version ${{ inputs.version }} --mode pull-request --log-level debug