Skip to content

Commit

Permalink
ci: disable hard-coded no-op for tools/sync_website.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dangotbanned committed Dec 30, 2024
1 parent 9900aa1 commit ba836ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ doc-clean-all = [
doc-serve = [
"python -m http.server --bind \"127.0.0.1\" --directory doc/_build/html 8000",
]
doc-publish = ["python tools/sync_website.py --no-commit"]
doc-publish = ["python tools/sync_website.py"]
clean = [
"python -c \"import shutil;shutil.rmtree('dist', ignore_errors=True)\"",
]
Expand Down
2 changes: 1 addition & 1 deletion tools/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def doc_serve() -> Commands:

@app.task("doc-publish")
def doc_publish() -> Commands:
yield cmd.script(f"{TOOLS}/sync_website.py", "--no-commit")
yield cmd.script(f"{TOOLS}/sync_website.py")


@app.task("doc-clean-build", extras=DOC)
Expand Down

0 comments on commit ba836ab

Please sign in to comment.