martin/.github/workflows/build-deploy-docs.yml

30 lines
630 B
YAML
Raw Normal View History

2023-05-29 05:34:16 +03:00
name: Build documentation
on:
push:
branches: [ main ]
2023-05-29 05:34:16 +03:00
pull_request:
jobs:
build-docs:
name: Build
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
- run: mdbook build docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2023-06-04 21:11:44 +03:00
publish_dir: ./target/book