2021-02-27 19:57:09 +00:00
|
|
|
name: Upload Documentation
|
2020-02-07 19:28:34 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-27 19:57:09 +00:00
|
|
|
branches: [master]
|
2020-02-07 19:28:34 +00:00
|
|
|
|
2023-03-15 13:32:55 +00:00
|
|
|
permissions:
|
2023-09-12 04:24:55 +00:00
|
|
|
contents: read
|
2023-03-15 13:32:55 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-02-07 19:28:34 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-11-04 00:42:22 +00:00
|
|
|
permissions:
|
2023-09-12 04:24:55 +00:00
|
|
|
contents: write
|
2022-11-04 00:42:22 +00:00
|
|
|
|
2020-02-07 19:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-03-11 23:19:03 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-02-07 19:28:34 +00:00
|
|
|
|
2023-09-12 04:24:55 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
2020-02-07 19:28:34 +00:00
|
|
|
|
2021-02-27 19:57:09 +00:00
|
|
|
- name: Build Docs
|
2022-11-25 17:00:59 +00:00
|
|
|
run: cargo +nightly doc --no-deps --workspace --all-features
|
|
|
|
env:
|
|
|
|
RUSTDOCFLAGS: --cfg=docsrs
|
2020-02-07 19:28:34 +00:00
|
|
|
|
|
|
|
- name: Tweak HTML
|
2021-02-27 19:57:09 +00:00
|
|
|
run: echo '<meta http-equiv="refresh" content="0;url=actix_web/index.html">' > target/doc/index.html
|
2020-02-07 19:28:34 +00:00
|
|
|
|
2020-08-13 07:04:50 +00:00
|
|
|
- name: Deploy to GitHub Pages
|
2023-07-19 22:43:25 +00:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.3
|
2020-08-13 07:04:50 +00:00
|
|
|
with:
|
2022-09-03 20:56:37 +00:00
|
|
|
folder: target/doc
|
|
|
|
single-commit: true
|