mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-10-31 23:25:18 +00:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
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
|
|
- name: Configure pages
|
|
uses: actions/configure-pages@v3
|
|
- name: Add python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.9'
|
|
cache: 'pip' # caching pip dependencies
|
|
- name: Install the doxyqml filter
|
|
run: pip install doxyqml
|
|
- name: Doxygen
|
|
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"
|