-
Notifications
You must be signed in to change notification settings - Fork 86
46 lines (43 loc) · 1.26 KB
/
publish_docs.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
40
41
42
43
44
45
46
name: Publish Docs
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
publish_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Rustup (apply rust-toolchain.toml)
run: rustup show
- name: Install NASM
run: |
sudo apt-get update
sudo apt-get install nasm
- name: Generate documentation
run: cargo doc --target x86_64-unknown-none --package libhermit-rs
- name: Generate index.html
run: |
cat > target/x86_64-unknown-none/doc/index.html <<EOL
<!doctype html>
<html>
<head>
<title>Redirect!</title>
<meta http-equiv="refresh" content="0; url=https://hermitcore.github.io/libhermit-rs/hermit/" />
</head>
<body>
<p><a href="https://hermitcore.github.io/libhermit-rs/hermit/">Redirect</a></p>
</body>
</html>
EOL
- name: Deploy documentation
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: target/x86_64-unknown-none/doc
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}