1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 05:52:59 +01:00
actix-net/.github/workflows/upload-doc.yml

37 lines
806 B
YAML
Raw Normal View History

2021-02-24 10:48:41 +01:00
name: Upload documentation
on:
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:
permissions:
contents: write
2021-02-24 10:48:41 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2021-02-24 10:48:41 +01:00
2023-10-29 02:55:34 +01:00
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with: { toolchain: nightly }
2021-02-24 10:48:41 +01:00
- name: Build Docs
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-10-29 02:55:34 +01:00
uses: JamesIves/github-pages-deploy-action@v4.4.3
2021-02-24 10:48:41 +01:00
with:
folder: target/doc
2023-10-29 02:55:34 +01:00
single-commit: true