We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cfab1 commit 2122abaCopy full SHA for 2122aba
.github/workflows/sdk_generation.yaml
@@ -6,6 +6,10 @@ name: Generate
6
description: Force generation of SDKs
7
type: boolean
8
default: false
9
+ push_code_samples_only:
10
+ description: Force push only code samples from SDK generation
11
+ type: boolean
12
+ default: false
13
set_version:
14
description: optionally set a specific SDK version
15
type: string
@@ -20,6 +24,7 @@ jobs:
20
24
with:
21
25
force: ${{ github.event.inputs.force }}
22
26
mode: pr
27
+ push_code_samples_only: ${{ fromJSON(github.event.inputs.push_code_samples_only != '' && github.event.inputs.push_code_samples_only || 'false') }}
23
28
set_version: ${{ github.event.inputs.set_version }}
29
speakeasy_version: latest
30
target: ${{ github.event.inputs.target }}
0 commit comments