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.
2 parents 4e5833d + 46766e5 commit 455b134Copy full SHA for 455b134
CONTRIBUTION.md
docs/docker-compose.yaml
@@ -23,6 +23,10 @@ services:
23
if echo "$${MODE}" | grep -i live &>/dev/null; then
24
mkdocs serve --config-file /main/docs/mkdocs.yaml -a 0.0.0.0:8000
25
elif echo "$${MODE}" | grep -iE "qa|build" &>/dev/null; then
26
+ git config --global --add safe.directory /main
27
+ git config --global user.name "GitHub Action"
28
+ git config --global user.email "action@github.com"
29
+ git config --global pull.rebase false
30
git branch -D gh-pages || true
31
git fetch $${UPSTREAM_REPO} gh-pages:gh-pages || true
32
mike deploy --ignore-remote-status --config-file /main/docs/mkdocs.yaml -u $$(grep -oP '\d+\.\d+' /main/$${PACKAGE}/version.py) latest
0 commit comments