-
Notifications
You must be signed in to change notification settings - Fork 73
40 lines (31 loc) · 1012 Bytes
/
rustdoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Rust
on:
push:
branches: [334-publish-rustdoc-on-github-pages]
pull_request:
branches: [334-publish-rustdoc-on-github-pages]
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
rustdoc:
if: ( ! github.event.pull_request.draft )
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Stable
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/[email protected]
with:
workspaces: ${{ matrix.package }} -> target
- name: "rustdoc"
run: cd tlsn; cargo doc
# --target-dir ${GITHUB_WORKSPACE}/docs
# https://dev.to/deciduously/prepare-your-rust-api-docs-for-github-pages-2n5i
- name: "publish"
run: |
rm -rf ${GITHUB_WORKSPACE}/docs
echo "<meta http-equiv=\"refresh\" content=\"0; url=tlsn_core\">" > tlsn/target/doc/index.html
cp -r tlsn/target/doc ${GITHUB_WORKSPACE}/docs