Skip to content

updated deployed.yml #35

updated deployed.yml

updated deployed.yml #35

Workflow file for this run

name: Deploy Combined Docs
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Antora CLI and extensions
run: |
npm install @antora/cli @antora/site-generator-default @antora/lunr-extension @antora/pdf-extension asciidoctor-kroki
- name: Build Antora site
run: npx antora antora-playbook.yml --to-dir=build/site
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/site
branch: gh-pages
clean: true
force: true