mirror of
https://github.com/spring-cloud/spring-cloud-build.git
synced 2026-09-17 12:49:00 +00:00
21 lines
3.3 KiB
YAML
21 lines
3.3 KiB
YAML
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 }}
|
|
secrets: inherit
|