-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.3 KB
/
github-pages.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
47
48
49
50
51
52
53
54
---
name: Github Pages
on:
push:
branches:
- master
jobs:
cleanup-runs:
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
gh-pages:
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/deps
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Generate documentation
shell: bash
env:
RUSTDOCFLAGS: "--cfg docsrs"
run: cargo doc --no-deps --all-features --workspace --exclude tenderdash-proto-compiler
- name: Generate index page
shell: bash
run: |
cat > target/doc/index.html << EOF
<html><head><meta http-equiv="refresh" content="0; url=tenderdash_abci/" /></head>
<body><a href="tenderdash_abci/">Click here</a></body>
</html>
EOF
- name: Upload docs
uses: actions/upload-pages-artifact@v1
with:
path: "target/doc"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1