Skip to content

Commit 3c2f758

Browse files
committed
Align path handling
1 parent b0e35a7 commit 3c2f758

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test_and_docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111
--github_user=${{ github.repository_owner }} \
112112
--github_repo=${{ github.event.repository.name }}
113113
114-
cd scripts/tooling && uv run python -m cli.main misc html_report --output _build/integration_status.html
114+
CURRENT=$(realpath .)
115+
bazel run //scripts/tooling -- misc html_report --output ${CURRENT}/_build/status_dashboard.html
115116
tar -cf github-pages.tar _build
116117
- name: Upload documentation artifact
117118
uses: actions/upload-artifact@v4.4.0

scripts/tooling/cli/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def _cmd_html_report(args: argparse.Namespace) -> int:
2424
return 1
2525

2626
output = Path(args.output) if args.output else Path("report.html")
27+
output = output.resolve()
2728
write_report(known_good, output)
2829
print(f"Report written to {output}")
2930
return 0

0 commit comments

Comments
 (0)