We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2010c52 + 0440297 commit d407283Copy full SHA for d407283
.github/workflows/docs.yml
@@ -21,14 +21,17 @@ jobs:
21
steps:
22
- uses: actions/checkout@v4
23
- name: Build
24
- run: cargo doc --no-deps
+ run: |
25
+ cargo doc --no-deps
26
+ # Create an index.html redirect at the root level
27
+ echo '<meta http-equiv="refresh" content="0; url=vpp_sim/index.html">' > target/doc/index.html
28
- name: Setup Pages
29
uses: actions/configure-pages@v4
30
- name: Upload docs
31
uses: actions/upload-artifact@v4
32
with:
33
name: github-pages
- path: target/doc/vpp_sim
34
+ path: target/doc
35
deploy:
36
runs-on: ubuntu-latest
37
needs: build
0 commit comments