mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
111d95eaea
* update CI with concurrency options * cors: rename private-network => local-network * modernize CI * clippy * run api diff job on all features
37 lines
861 B
YAML
37 lines
861 B
YAML
name: Upload Documentation
|
|
|
|
on:
|
|
push: { branches: [master] }
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup override set nightly
|
|
rustup update nightly
|
|
|
|
- name: Build Docs
|
|
run: cargo doc --workspace --all-features --no-deps
|
|
|
|
- name: Tweak HTML
|
|
run: echo '<meta http-equiv="refresh" content="0;url=actix_cors/index.html">' > target/doc/index.html
|
|
|
|
- name: Deploy to GitHub Pages
|
|
uses: JamesIves/github-pages-deploy-action@3.7.1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: target/doc
|