commit f87935500650d6e4b49041f7096eadae319c1515
parent 5342f532f5b72ea1d9aba0ae7c45548cc0d74ae9
Author: Brian Graham <brian@buildingbetterteams.de>
Date: Mon, 6 Apr 2026 20:11:17 +0200
Fix auto-commit using old artifacts path
Was: git add results/ dashboard/public/artifacts/
Now: git add -A results/ artifacts/
Artifacts moved to project root months ago but end-of-run commit
still referenced the old path, causing artifacts to not be pushed.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/harness/run.py b/harness/run.py
@@ -1001,7 +1001,7 @@ def main():
print("Committing results...")
try:
subprocess.run(
- ["git", "add", "results/", "dashboard/public/artifacts/"],
+ ["git", "add", "-A", "results/", "artifacts/"],
cwd=str(PROJECT_DIR), capture_output=True, timeout=30,
)
total_runs = len(list((results_dir / "runs").iterdir()))
@@ -1025,7 +1025,7 @@ def main():
print("Results committed locally. Push manually with: git push")
except Exception as e:
print(f"Auto-commit failed: {e}")
- print("Commit manually with: git add results/ dashboard/public/artifacts/ && git commit && git push")
+ print("Commit manually with: git add -A results/ artifacts/ && git commit && git push")
if __name__ == "__main__":