Deploy Reference Documentation #191
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Reference Documentation | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| ref: | ||
| description: 'Branch or tag to deploy reference docs from. Defaults to current branch.' | ||
| type: string | ||
| required: false | ||
| default: '' | ||
| permissions: | ||
| id-token: write | ||
| jobs: | ||
| deploy-reference-docs: | ||
| runs-on: ubuntu-latest | ||
| uses: "ExpediaGroup/expediagroup-java-sdk/.github/workflows/generate-ref-docs.yaml@OmarAlJarrah/reusable-generate-reference-docs-gh-action" | ||
|
Check failure on line 18 in .github/workflows/generate-docs-site.yml
|
||
| with: | ||
| buildsystem: 'maven' | ||
| ref: ${{ inputs.ref != '' && inputs.ref || github.ref }} | ||
| secrets: | ||
| GITHUB_PAT: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | ||