From 385137a5ddbaf035b350946597fb810d53971985 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Tue, 9 Apr 2024 10:30:29 -0400 Subject: [PATCH] Create deploy-docs-test.yml --- .github/workflows/deploy-docs-test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/deploy-docs-test.yml diff --git a/.github/workflows/deploy-docs-test.yml b/.github/workflows/deploy-docs-test.yml new file mode 100644 index 0000000..2725363 --- /dev/null +++ b/.github/workflows/deploy-docs-test.yml @@ -0,0 +1,25 @@ +name: Deploy Docs Test + +on: + workflow_dispatch: + inputs: + build-refname: + description: Enter git refname to build (e.g., 5.7.x). + required: false + push: + branches: docs-build + +jobs: + context: + runs-on: ubuntu-latest + steps: + - name: Dump github context + run: echo "$GITHUB_CONTEXT" + shell: bash + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + deploy-doocs: + uses: spring-cloud/spring-cloud-build/.github/workflows/spring-cloud-deploy-docs.yml@docs-build + with: + build-refname: ${{ github.event.inputs.build-refname }} + secrets: inherit