Skip to content

Commit

Permalink
docgen: Add a top-level index.html
Browse files Browse the repository at this point in the history
Create a simple top level index so that people can follow the link given
in the build log.

Signed-off-by: David Brown <[email protected]>
  • Loading branch information
d3zd3z committed Sep 17, 2024
1 parent 6d9a313 commit 7725e34
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
cd ..
mkdir docout
mv build/rust/target/thumbv7em-none-eabi/doc docout/nostd
cp docs/top-index.html docout/index.html
- name: Build build documentation
working-directory: zephyr-rust-lang
Expand Down
14 changes: 14 additions & 0 deletions docs/top-index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Documentation Index</title>
</head>
<body>
<h1>Documentation Index</h1>
<ul>
<li><a href="nostd/zephyr/index.html">zephyr crate Documentation</a></li>
<li><a href="std/zephyr_build/index.html">zephyr_build support Documentation</a></li>
</ul>
</body>
</html>

0 comments on commit 7725e34

Please sign in to comment.