Skip to content

Commit

Permalink
ci: make directory for doxygen build
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhart committed Nov 18, 2024
1 parent a6dc862 commit b5fd91b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,13 @@ jobs:
sphinx-build -b html docs/ out/
for TAG in `git tag --list --sort=-version:refname`
do
python -m pip uninstall -y sansmic
rm -rf docs/_build/doxyxml docs/apidocs/*
export SANSMIC_SPHINX_VERSION=$TAG
export VERSION_INFO=$TAG
rm -f docs/apidocs/*.*
mkdir docs/_build/doxyxml
git checkout $TAG
python -m pip install --no-deps -e .
sphinx-build -b html docs/ out/releases/$TAG
done
Expand Down

0 comments on commit b5fd91b

Please sign in to comment.