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 afc48b7 commit b8855c5Copy full SHA for b8855c5
.github/workflows/generate-docs-site.yml
@@ -2,6 +2,12 @@ name: Deploy Reference Documentation
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ ref:
7
+ description: 'Branch or tag to deploy reference docs from. Defaults to current branch.'
8
+ type: string
9
+ required: false
10
+ default: ''
11
12
permissions:
13
id-token: write
@@ -11,5 +17,6 @@ jobs:
17
uses: "ExpediaGroup/expediagroup-java-sdk/.github/workflows/generate-ref-docs.yaml@main"
18
with:
19
buildsystem: 'maven'
20
+ ref: ${{ inputs.ref != '' && inputs.ref || github.ref }}
14
21
secrets:
15
22
GITHUB_PAT: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
0 commit comments