Regenerate chromemanagement client (#6557) #14
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: Generate Documentation | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: 'default tag for documentation' | |
| permissions: | |
| contents: write | |
| jobs: | |
| docs: | |
| name: "Generate and Deploy Documentation" | |
| uses: GoogleCloudPlatform/php-tools/.github/workflows/doctum.yml@main | |
| with: | |
| title: "Google Cloud PHP Client Services" | |
| # use a custom theme so that namespaces that share the same name as classes | |
| # are not overwritten (we use ".ns.html" for namspaces to avoid this conflict | |
| # in our theme) | |
| # @see .github/doctum/apiclient-services | |
| theme: 'apiclient-services' | |
| default_version: ${{ inputs.tag || 'master'}} | |
| tag_pattern: '' |