Skip to content

perf: python return values, add notes #34

perf: python return values, add notes

perf: python return values, add notes #34

Workflow file for this run

name: deploy-docs
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
meta:
uses: ./.github/workflows/meta.yml
build:
needs: meta
runs-on: ubuntu-latest
env:
VERSION: ${{ format('({0}) {1}', needs.meta.outputs.tag == github.ref_name && 'main' || github.ref_name, needs.meta.outputs.tag) }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build Doxygen
uses: mattnotmitt/doxygen-action@v1.9.5
with:
doxyfile-path: tools/Doxygen/Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs-gen/html
publish_branch: gh-pages
commit_message: ${{ env.VERSION }}