1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-07-05 22:33:50 +00:00
harbour-sailfin/.github/workflows/doxygen.yaml

43 lines
1 KiB
YAML
Raw Normal View History

name: doxygen
run-name: Generate and deploy Doxygen documentation
on:
push:
branches:
- "master"
workflow_dispatch: {}
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/configure-pages@v3
2024-04-27 21:19:57 +00:00
- name: Add python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
2024-04-27 21:19:57 +00:00
- name: Install the doxyqml filter
run: pip install doxyqml
- name: Doxygen
2024-04-27 21:20:42 +00:00
uses: mattnotmitt/doxygen-action@v1.9.5
- name: Upload GitHub pages artifact
uses: "actions/upload-pages-artifact@v2"
with:
path: "doxygen/html/"
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: "actions/deploy-pages@v2"