Generate and Deploy Documentation #961
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: 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 |