2021-02-27 20:57:09 +01:00
|
|
|
name: Upload Documentation
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-27 20:57:09 +01:00
|
|
|
branches: [master]
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-08-13 09:04:50 +02:00
|
|
|
- uses: actions/checkout@v2
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-11-09 15:01:36 +01:00
|
|
|
toolchain: nightly-x86_64-unknown-linux-gnu
|
2020-02-07 20:28:34 +01:00
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
2021-02-27 20:57:09 +01:00
|
|
|
- name: Build Docs
|
2020-02-07 20:28:34 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: doc
|
2021-02-07 21:33:53 +01:00
|
|
|
args: --workspace --all-features --no-deps
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
- name: Tweak HTML
|
2021-02-27 20:57:09 +01:00
|
|
|
run: echo '<meta http-equiv="refresh" content="0;url=actix_web/index.html">' > target/doc/index.html
|
2020-02-07 20:28:34 +01:00
|
|
|
|
2020-08-13 09:04:50 +02:00
|
|
|
- name: Deploy to GitHub Pages
|
2022-09-03 23:15:59 +02:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.0
|
2020-08-13 09:04:50 +02:00
|
|
|
with:
|
2022-09-03 22:56:37 +02:00
|
|
|
folder: target/doc
|
|
|
|
single-commit: true
|