Skip to content

Commit 095e2f9

Browse files
allenanieclaude
andcommitted
Fix documentation workflow
- Update .gitignore to exclude mlruns/, *.db, docs-mkdocs/site/ - Fix Makefile to only commit docs-mkdocs/, workflows, and Makefile - Remove unwanted files from git tracking (mlruns data, build artifacts) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e4a9853 commit 095e2f9

220 files changed

Lines changed: 14 additions & 91281 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,16 @@ OAI_CONFIG_LIST
168168
*.gv.pdf
169169

170170
# jupyter book API output
171-
docs/api/*
171+
docs/api/*
172+
173+
# MLflow tracking data
174+
mlruns/
175+
mlruns.db
176+
*.db
177+
178+
# MkDocs build output (site/ is generated, not tracked)
179+
docs-mkdocs/site/
180+
181+
# Local test notebooks and temp files
182+
tests/optimizer_*.ipynb
183+
examples/mlflow_autolog_example.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ publish:
6262
@$(MAKE) build
6363
@echo ""
6464
@echo "💾 Committing changes..."
65-
@git add .
65+
@git add docs-mkdocs/ .github/workflows/docs.yml Makefile
6666
@if git diff --staged --quiet; then \
6767
echo "ℹ️ No changes to commit"; \
6868
else \

0 commit comments

Comments
 (0)