Skip to content

Commit b718043

Browse files
committed
Build the manual using mdbook and redirect old page
1 parent c906b80 commit b718043

File tree

3 files changed

+41
-1121
lines changed

3 files changed

+41
-1121
lines changed

.github/workflows/ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push:
44
branches:
55
- src
6+
schedule:
7+
# Every day, to pick up the latest rust-analyzer repo changes.
8+
- cron: '0 0 * * *'
69

710
jobs:
811
CI:
@@ -16,6 +19,31 @@ jobs:
1619

1720
- run: bundle install && bundle exec jekyll build
1821

22+
- uses: taiki-e/install-action@v2
23+
with:
24+
25+
26+
- uses: taiki-e/install-action@v2
27+
with:
28+
29+
30+
- name: Clone the latest rust-analyzer, as of the mdbook PR
31+
uses: GuillaumeFalourd/[email protected]
32+
with:
33+
depth: 1
34+
branch: 'master'
35+
owner: 'rust-lang'
36+
repository: 'rust-analyzer'
37+
38+
- name: Build generated.md files
39+
run: cd rust-analyzer && cargo xtask codegen
40+
41+
- name: Run mdbook
42+
run: cd rust-analyzer/docs/book && mdbook build
43+
44+
- name: Include mdbook output
45+
run: mv rust-analyzer/docs/book/book _site
46+
1947
- name: Deploy
2048
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
2149
with:

0 commit comments

Comments
 (0)