Skip to content

Commit

Permalink
ci: remove erroneous mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhart committed Nov 20, 2024
1 parent 0548ab1 commit 3899f05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,18 @@ jobs:
sphinx-build -b html -d doctrees/root/ sansmic-ci/docs/ html/
mkdir docs/_build
mkdir docs/_build/doxyxml
mkdir html/
export SANSMIC_SPHINX_VERSION=dev
sphinx-build -b html -d doctrees/latest docs/ html/latest
for TAG in `git tag --list "v*.*.*" --sort=-version:refname`
do
rm -rf docs
git checkout -f $TAG
mkdir docs/_build
mkdir docs/_build/doxyxml
export SANSMIC_SPHINX_VERSION=$TAG
cp -f sansmic-ci/docs/_static/* docs/_static/
cp html/_static/switcher.json docs/_static/
cp -f sansmic-ci/docs/conf.py docs/conf.py
sphinx-build -q -b html -d doctrees/$TAG docs html/$TAG
done
Expand Down

0 comments on commit 3899f05

Please sign in to comment.