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 f932494 commit ac8d17aCopy full SHA for ac8d17a
.github/workflows/generate-docs-site.yml
@@ -19,12 +19,10 @@ jobs:
19
- name: Set Target Ref
20
shell: python -u {0}
21
run: |
22
- ref = "${{ inputs.ref }}"
23
- if ref == "":
24
- ref = "${{ github.ref }}"
25
-
+ ref = "${{ inputs.ref }}" if "${{ inputs.ref }}" != "" else "${{ github.ref }}"
26
with open("$GITHUB_ENV", "a") as env_file:
27
print(f"TARGET_REF={ref}", file=env_file)
+
28
- uses: "ExpediaGroup/expediagroup-java-sdk/.github/workflows/generate-ref-docs.yaml@OmarAlJarrah/reusable-generate-reference-docs-gh-action"
29
with:
30
buildsystem: 'maven'
0 commit comments