smithay/.github/workflows/docs.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2020-04-12 07:13:28 +00:00
name: Deploy Docs to GitHub Pages
on:
push:
branches:
- master
jobs:
doc:
name: Documentation on Github Pages
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cargo cache
uses: actions/cache@v1
with:
path: ~/.cargo
key: cargo-stable
- name: Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: System dependencies
run: sudo apt-get install libudev-dev libgbm-dev libxkbcommon-dev libegl1-mesa-dev libwayland-dev libinput-dev libsystemd-dev libdbus-1-dev
2020-04-12 07:13:28 +00:00
- name: Build Documentation
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --features "test_all_features"
2020-04-12 07:13:28 +00:00
- name: Setup index
2020-04-19 21:26:54 +00:00
run: cp ./doc_index.html ./target/doc/index.html
2020-04-12 07:13:28 +00:00
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2020-04-19 21:26:54 +00:00
publish_dir: ./target/doc