fix: update universe domain URI #301
Workflow file for this run
This file contains 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: Generate Documentation | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to release' | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
name: "Generate and Deploy Documentation" | |
uses: GoogleCloudPlatform/php-tools/.github/workflows/doctum.yml@main | |
with: | |
title: "Google Auth Library PHP Reference Documentation" | |
default_version: ${{ inputs.tag || github.head_ref || github.ref_name }} | |
dry_run: ${{ github.event_name == 'pull_request' }} | |