File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy to Github Pages
2+
3+ on :
4+ push :
5+ branches : [master]
6+
7+ jobs :
8+ deploy :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v2
12+
13+ - name : setup mdBook
14+ uses : peaceiris/actions-mdbook@v1
15+ with :
16+ mdbook-version : latest
17+
18+ - name : build mdBook docs
19+ run : mdbook build
20+
21+ - name : deploy
22+ uses : peaceiris/actions-gh-pages@v3
23+ with :
24+ deploy_key : ${{ secrets.ACTIONS_DEPLOY_KEY }}
25+ publish_dir : ./book
Original file line number Diff line number Diff line change 1+ book
Original file line number Diff line number Diff line change 1+ [book ]
2+ authors = [" RustPython Contributors" ]
3+ language = " en"
4+ multilingual = false
5+ src = " src"
6+ title = " RustPython docs"
Original file line number Diff line number Diff line change 1+ # Summary
2+
3+ - [ Chapter 1] ( ./chapter_1.md )
Original file line number Diff line number Diff line change 1+ # Chapter 1
You can’t perform that action at this time.
0 commit comments