Skip to content

Docs writer II

Docs writer II #3

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- master
jobs:
build-deploy:
permissions:
contents: write
pages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: |
sudo apt install -y \
doxygen \
python3-pip \
python3-setuptools
python3 -m pip install mkdocs mkdocs-github-admonitions-plugin mkdocs-get-deps
mkdir dist
doxygen
mkdocs
- name: Deploy
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
gh-pages -d dist -e . -u \"github-actions-bot <[email protected]>\"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}