mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
Auto-publish mdbook (#684)
This commit is contained in:
parent
56dde81cfe
commit
0169b20ff2
30
.github/workflows/build-deploy-docs.yml
vendored
Normal file
30
.github/workflows/build-deploy-docs.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Build documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
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 }}
|
||||
publish_dir: ./docs/book
|
Loading…
Reference in New Issue
Block a user