22 lines
536 B
YAML
22 lines
536 B
YAML
name: Website
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v0.9.x
|
|
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- run: cargo install mdbook --no-default-features --features output,search
|
|
- run: cd website && mdbook build
|
|
- run: echo "lettre.at" > website/_book/html/CNAME
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v2.5.1
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./website/_book/html
|