diff options
| -rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f2c8c1..c264373 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -344,14 +344,30 @@ jobs: run: | td=$(mktemp -d) cp -r target/doc $td/api + echo rtic lychee --offline --format detailed $td/api/rtic/ + + echo rtic_macros lychee --offline --format detailed $td/api/rtic_macros/ + + echo rtic_arbiter lychee --offline --format detailed $td/api/rtic_arbiter/ + + echo rtic_channel lychee --offline --format detailed $td/api/rtic_channel/ + + echo rtic_common lychee --offline --format detailed $td/api/rtic_common/ + + echo rtic_macros lychee --offline --format detailed $td/api/rtic_macros/ + + echo rtic_monotonics lychee --offline --format detailed $td/api/rtic_monotonics/ + + echo rtic_time lychee --offline --format detailed $td/api/rtic_time/ + - name: Archive the API docs run: | |
