27 lines
670 B
YAML
27 lines
670 B
YAML
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: ./.github/workflows/spring-cloud-deploy-docs.yml
|
|
with:
|
|
build-refname: ${{ github.event.inputs.build-refname }}
|
|
secrets:
|
|
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
|