File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments