Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed CONTRIBUTION.md
Empty file.
4 changes: 4 additions & 0 deletions docs/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ services:
if echo "$${MODE}" | grep -i live &>/dev/null; then
mkdocs serve --config-file /main/docs/mkdocs.yaml -a 0.0.0.0:8000
elif echo "$${MODE}" | grep -iE "qa|build" &>/dev/null; then
git config --global --add safe.directory /main
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
git config --global pull.rebase false
git branch -D gh-pages || true
git fetch $${UPSTREAM_REPO} gh-pages:gh-pages || true
mike deploy --ignore-remote-status --config-file /main/docs/mkdocs.yaml -u $$(grep -oP '\d+\.\d+' /main/$${PACKAGE}/version.py) latest
Expand Down
Loading