Deploy Docs (all) #413
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
| # Generated by the rollout-deploy-docs workflow in | |
| # spring-cloud/spring-cloud-github-actions. | |
| # | |
| # Do not edit this file directly - update examples/deploy-docs.yml there | |
| # and re-run the rollout, otherwise your change will be overwritten. | |
| name: Deploy Docs | |
| run-name: ${{ format('{0} ({1})', github.workflow, github.event.inputs.build-refname || 'all') }} | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| build-refname: | |
| description: Enter git refname to build (e.g., 4.3.x). | |
| required: false | |
| push: | |
| branches: docs-build | |
| permissions: read-all | |
| jobs: | |
| deploy-docs: | |
| uses: spring-cloud/spring-cloud-github-actions/.github/workflows/deploy-docs.yml@main | |
| with: | |
| build_refname: ${{ github.event.inputs.build-refname }} | |
| # Optional overrides - the defaults are correct for every current project: | |
| # java_version: '17' | |
| # build_command: './mvnw --no-transfer-progress -B antora -Pdocs' | |
| # runs_on: 'ubuntu-latest' | |
| # context_root: 'spring-cloud-<project>' | |
| secrets: inherit |