2021-02-24 10:48:41 +01:00
|
|
|
name: Upload documentation
|
|
|
|
|
|
|
|
on:
|
2023-04-01 22:39:19 +02:00
|
|
|
push: { branches: [master] }
|
2021-02-24 10:48:41 +01:00
|
|
|
|
2023-04-01 22:57:10 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
2023-04-01 22:39:19 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-29 05:17:06 +01:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-24 10:48:41 +01:00
|
|
|
|
2024-01-15 19:47:31 +01:00
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
|
2023-04-01 22:39:19 +02:00
|
|
|
with: { toolchain: 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
|
2024-05-02 03:20:46 +02:00
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.6.0
|
2021-02-24 10:48:41 +01:00
|
|
|
with:
|
2023-01-27 21:36:05 +01:00
|
|
|
folder: target/doc
|
2023-10-29 02:55:34 +01:00
|
|
|
single-commit: true
|