2021-02-24 10:48:41 +01:00
|
|
|
name: Upload documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-01-27 21:36:05 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-24 10:48:41 +01:00
|
|
|
|
|
|
|
- name: Install Rust
|
2023-01-27 21:36:05 +01:00
|
|
|
run: |
|
|
|
|
rustup set profile minimal
|
|
|
|
rustup install nightly
|
|
|
|
rustup override set nightly
|
2021-02-24 10:48:41 +01:00
|
|
|
|
|
|
|
- name: Build Docs
|
2023-01-27 21:36:05 +01:00
|
|
|
run: cargo doc --workspace --all-features --no-deps
|
2021-02-24 10:48:41 +01:00
|
|
|
|
|
|
|
- name: Tweak HTML
|
|
|
|
run: echo '<meta http-equiv="refresh" content="0;url=actix_server/index.html">' > target/doc/index.html
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
2023-01-27 21:36:05 +01:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
2021-02-24 10:48:41 +01:00
|
|
|
with:
|
2023-01-27 21:36:05 +01:00
|
|
|
folder: target/doc
|