Skip to content

Deploy Reference Documentation #2

Deploy Reference Documentation

Deploy Reference Documentation #2

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:
uses: "ExpediaGroup/expediagroup-java-sdk/.github/workflows/generate-ref-docs.yaml@main"
with:
buildsystem: 'maven'
ref: ${{ inputs.ref != '' && inputs.ref || github.ref }}
secrets:
GITHUB_PAT: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}