Skip to content

Fix

Fix #49

Workflow file for this run

# name: Docs
# on:
# push:
# branches:
# - main
# jobs:
# Docs:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v3
# - name: Cancel Previous Runs
# uses: styfle/cancel-workflow-action@0.6.0
# with:
# access_token: ${{ secrets.DOCS_TOKEN }}
# - name: Add Submodules
# run: git submodule update --init --recursive
# - name: Install Dependencies
# run: sudo apt install doxygen
# - name: Build Docs
# working-directory: .
# run: |
# cd scripts
# ./doxygen.sh
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.DOCS_TOKEN }}
# publish_dir: './website'