mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
36 lines
965 B
YAML
36 lines
965 B
YAML
|
name: Upload documentation (actix-redis)
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.repository == 'actix/actix-extras'
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
|
||
|
- name: Install Rust
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable-x86_64-unknown-linux-gnu
|
||
|
profile: minimal
|
||
|
override: true
|
||
|
|
||
|
- name: check build
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: doc
|
||
|
args: --no-deps --package=actix-redis
|
||
|
|
||
|
- name: Tweak HTML
|
||
|
run: echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html
|
||
|
|
||
|
- name: Upload documentation
|
||
|
run: |
|
||
|
git clone https://github.com/davisp/ghp-import.git
|
||
|
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://${{ secrets.GITHUB_TOKEN }}@github.com/"${{ github.repository }}.git" target/doc
|