Migrate docs to Antora infrastructure (#460)

Resolves #385
This commit is contained in:
Chris Bono
2023-09-25 00:29:05 -05:00
committed by GitHub
parent 70eeb4aac6
commit 758153d140
45 changed files with 314 additions and 427 deletions

View File

@@ -0,0 +1,27 @@
name: Deploy Docs
on:
push:
branches-ignore: [ gh-pages ]
tags: '**'
workflow_dispatch:
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
if: github.repository_owner == 'spring-projects'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: docs-build
fetch-depth: 1
- name: Dispatch (partial build)
if: github.ref_type == 'branch'
env:
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
run: gh workflow run deploy-docs-antora.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }}
- name: Dispatch (full build)
if: github.ref_type == 'tag'
env:
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
run: gh workflow run deploy-docs-antora.yml -r $(git rev-parse --abbrev-ref HEAD)