We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dfa7fb commit 862dd10Copy full SHA for 862dd10
.github/workflows/doxygen.yml
@@ -41,14 +41,14 @@ jobs:
41
git config --global user.email "github-actions[bot]@users.noreply.github.com"
42
43
# Create or switch to gh-pages branch
44
- git fetch origin gh-pages || true
45
- git checkout gh-pages || git checkout --orphan gh-pages
+ git fetch origin gh-pages
+ git checkout --track origin/gh-pages || git checkout -b gh-pages
46
47
# Remove old files and copy new documentation
48
git rm -rf doxygen || true
49
mv build/html doxygen
50
51
# Commit and push changes
52
- git add .
+ git add doxygen
53
git commit -m "Update Doxygen documentation"
54
git push origin gh-pages --force
0 commit comments