mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 07:53:43 +00:00
24 lines
529 B
YAML
24 lines
529 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- documentation
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Action Doxygen and GitHub Pages
|
|
id: ghaction
|
|
uses: AgarwalSaurav/ghaction-doxygen-ghpages@v2.0.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
doxyfile-path: Doxyfile
|
|
working-directory: .
|
|
html-output-folder: docs/html
|
|
branch: gh-pages
|