1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/.github/workflows/upload-doc.yml

31 lines
704 B
YAML
Raw Normal View History

2021-03-22 12:46:02 +01:00
name: Upload Documentation
2020-01-30 06:44:05 +01:00
on:
push:
2021-03-22 12:46:02 +01:00
branches: [master]
2020-01-30 06:44:05 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-05-25 15:07:31 +02:00
- uses: actions/checkout@v3
2020-01-30 06:44:05 +01:00
- name: Install Rust
2022-12-01 11:45:31 +01:00
run: |
rustup override set nightly
rustup update nightly
2020-01-30 06:44:05 +01:00
2021-03-22 12:46:02 +01:00
- name: Build Docs
2022-12-01 11:45:31 +01:00
run: cargo doc --workspace --all-features --no-deps
2020-01-30 06:44:05 +01:00
- name: Tweak HTML
2021-03-22 12:46:02 +01:00
run: echo '<meta http-equiv="refresh" content="0;url=actix_cors/index.html">' > target/doc/index.html
2020-01-30 06:44:05 +01:00
- 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