-
Notifications
You must be signed in to change notification settings - Fork 6
35 lines (30 loc) · 828 Bytes
/
mdbook.yml
File metadata and controls
35 lines (30 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: mdbook
on:
push:
paths:
- "src/**.md"
- "book.toml"
pull_request:
branches:
- main
paths:
- "src/**.md"
- "book.toml"
jobs:
pages:
name: GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup mdBook 📔
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.10'
# mdbook-version: 'latest'
- run: mdbook build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
if: github.event_name == 'push' && github.repository == 'fortran-fans/modern-fortran-programming' && ( startsWith( github.ref, 'refs/tags/' ) || github.ref == 'refs/heads/main' )
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book