Skip to content

generate-doxygen

generate-doxygen #30

name: generate-doxygen
on:
workflow_dispatch:
schedule:
- cron: '0 06 * * *'
jobs:
build-doxygen-doc:
permissions: write-all
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: "clone azerothcore-wotlk source"
run: |
git clone --single-branch https://github.com/azerothcore/azerothcore-wotlk
- name: "run doxygen"
uses: mattnotmitt/doxygen-action@v1.9.8
- name: "commit doxygen"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd docs/
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
rm -rf azerothcore-wotlk
git add .
git commit -m "chore: Doxygen documentation πŸŽ‰"
git push