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

42 lines
894 B
YAML
Raw Normal View History

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