Skip to content

Commit

Permalink
try to add a landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixFrog authored Sep 19, 2024
1 parent 6760694 commit 08f2c29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dockbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
- name: Generate docs
run: |
for f in $(find ./ubm-f1tenth/ -type f -iname "package.xml"); do rosdoc2 build -p ${f%package.xml} -o ./docs/; done
mkdir ./docs
echo '<html><head><title>ubm-driverless ros packages documentation index</title></head><body><h1>Index of packages documentation for ubm-driverless/ubm-f1tenth</h1><ul>' > ./docs/index.html
for f in $(find ./ubm-f1tenth/ -type f -iname "package.xml"); do rosdoc2 build -p ${f%package.xml} -o ./docs/; echo "<li><a href='/ubm-docs/${${f%/package.xml}##*/}'>${${f%/package.xml}##*/}</a></li>" > ./docs/index.html ; done
echo '' > ./docs/index.html
- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down

0 comments on commit 08f2c29

Please sign in to comment.