Skip to content

Generate and Deploy Documentation #34

Generate and Deploy Documentation

Generate and Deploy Documentation #34

Workflow file for this run

name: Generate and Deploy Documentation
on:
schedule:
- cron: '0 0 * * *' # Once per day at midnight
jobs:
deploy_docs:
concurrency: ci-${{ github.ref }} # Kill old runs.
runs-on: ubuntu-latest
steps:
- name: Checkout Repo 🛎️
uses: actions/checkout@v3
with:
fetch-depth: 1
ref: 'main'
- name: Generate Docs 🔧
uses: mattnotmitt/[email protected]
with:
doxyfile-path: 'docs/openbic.cfg'
- name: Deploy Docs 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/html
single-commit: true