Skip to content

Deploy Documentation #1

Deploy Documentation

Deploy Documentation #1

Workflow file for this run

name: Deploy Documentation
on:
workflow_run:
workflows: ["Documentation"] # Match the name in documentation.yml
types:
- completed
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Download Generated Documentation
uses: actions/download-artifact@v4
with:
name: documentation-output
path: docs # Ensure this matches where documentation is generated
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs