Skip to content

Merge branch 'master' of https://github.com/RactStudio/plugin-frame #19

Merge branch 'master' of https://github.com/RactStudio/plugin-frame

Merge branch 'master' of https://github.com/RactStudio/plugin-frame #19

Workflow file for this run

name: Documentation Deployment
on:
push:
branches: [master]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Generate Documentation
run: |
mkdir -p public
doxygen Doxyfile
- name: Deploy to Doc Branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
destination_dir: .
publish_branch: doc
force_orphan: true