Upgrade to Antora UI Spring 0.4.16 #16
This file contains 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: Trigger Docs Build | |
on: | |
push: | |
branches: '3.3.x' | |
paths: [ 'antora/*' ] | |
permissions: | |
actions: write | |
jobs: | |
trigger-docs-build: | |
name: Trigger Docs Build | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'spring-projects' | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v4 | |
with: | |
ref: docs-build | |
- name: Trigger Workflow | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh workflow run deploy-docs.yml -r docs-build -f build-refname=${{ github.event.inputs.build-refname }} -f build-version=${{ github.event.inputs.build-version }} |