mirror of
https://github.com/actix/actix-web.git
synced 2024-11-13 04:11:09 +00:00
40 lines
893 B
YAML
40 lines
893 B
YAML
name: Upload Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
permissions:
|
|
contents: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Rust
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
|
|
with:
|
|
toolchain: nightly
|
|
|
|
- name: Build Docs
|
|
run: cargo +nightly doc --no-deps --workspace --all-features
|
|
env:
|
|
RUSTDOCFLAGS: --cfg=docsrs
|
|
|
|
- name: Tweak HTML
|
|
run: echo '<meta http-equiv="refresh" content="0;url=actix_web/index.html">' > target/doc/index.html
|
|
|
|
- name: Deploy to GitHub Pages
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.3
|
|
with:
|
|
folder: target/doc
|
|
single-commit: true
|