49 lines
1,002 B
YAML
49 lines
1,002 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
name: publish-documentation
|
|
|
|
jobs:
|
|
doc:
|
|
name: panorama
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: mdbook
|
|
uses: peaceiris/actions-mdbook@v1
|
|
with:
|
|
mdbook-version: 'latest'
|
|
|
|
- name: build mdbook
|
|
run: |
|
|
mdbook build docs -d $(pwd)/public
|
|
|
|
- name: build api docs
|
|
run: |
|
|
cargo doc --workspace --no-deps --document-private-items
|
|
cp -r target/doc public/api
|
|
|
|
- name: deploy
|
|
uses: JamesIves/github-pages-deploy-action@4.0.0
|
|
with:
|
|
branch: gh-pages
|
|
folder: public
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: ${{ runner.os }}-cargo
|
|
|
|
# vim: set ts=2 tw=2 sw=2 et :
|