Build and Deploy Documentation (main) #24
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: Build and Deploy Documentation | |
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., 1.0.x). | |
required: false | |
build-version: | |
description: Enter the version being build (e.g. 1.0.3-SNAPSHOT) | |
required: false | |
push: | |
branches: docs-build | |
permissions: read-all | |
jobs: | |
build-and-deploy-docs: | |
name: Build and Deploy Documentation | |
if: github.repository_owner == 'spring-projects' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set Up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Set Up NPM | |
run: npm ci | |
- name: Run Antora | |
env: | |
ALGOLIA_APP_ID: 244V8V9FGG | |
ALGOLIA_API_KEY: 82c7ead946afbac3cf98c32446154691 | |
ALGOLIA_INDEX_NAME': spring-boot-docs | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
REFERENCE: ${{ github.event.inputs.build-refname }} | |
BUILD_VERSION: ${{ github.event.inputs.build-version }} | |
run: npx antora antora-playbook.yml --stacktrace | |
- name: Sync Documentation | |
uses: spring-io/spring-doc-actions/[email protected] | |
with: | |
docs-username: ${{ secrets.DOCS_USERNAME }} | |
docs-host: ${{ secrets.DOCS_HOST }} | |
docs-ssh-key: ${{ secrets.DOCS_SSH_KEY }} | |
docs-ssh-host-key: ${{ secrets.DOCS_SSH_HOST_KEY }} | |
httpdocs-path: /spring-boot/antora/reference | |
- name: Bust Cloudflare Cache | |
uses: spring-io/spring-doc-actions/[email protected] | |
with: | |
context-root: spring-boot | |
cloudflare-zone-id: ${{ secrets.CLOUDFLARE_ZONE_ID }} | |
cloudflare-cache-token: ${{ secrets.CLOUDFLARE_CACHE_TOKEN }} |