Skip to content

fix: 🔥 remove redundant contribution.md | check docs developer guide #1226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 2, 2025
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