Update .gitea/workflows/doxygen.yaml
All checks were successful
Doxygen / Doxygen (push) Successful in 17s

This commit is contained in:
thijskamphuis 2025-01-28 22:45:18 +01:00
parent 3a0f584632
commit 8136ce77b9

View File

@ -24,20 +24,15 @@ jobs:
- name: Move `/docs/html/` contents to web branch
run: |
# Ensure a clean Git state
git config --global user.name "${{ gitea.actor }}"
git config --global user.email "${{ gitea.actor }}@example.com"
git fetch origin
# Create the web branch
git checkout --orphan web
git reset --hard
git clean -fdx
# Copy the contents of docs/html/ to the root
cp -r docs/html/* . || exit 1
cp -r docs/html/* .
# Commit and push to the web branch
git add .
git commit -m "Update web branch with documentation"
git push origin web --force