Skip to content

Commit b49a61b

Browse files
author
Ruben Schmidmeister
committed
Merge remote-tracking branch 'origin/master' into remove-glossary
2 parents a55e2ad + 1d2ff82 commit b49a61b

28 files changed

+735
-770
lines changed

.github/workflows/docs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build Documentation
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v1
17+
- name: Setup mdBook
18+
uses: peaceiris/actions-mdbook@v1
19+
with:
20+
mdbook-version: '0.4.0'
21+
- name: Build Documentation
22+
run: mdbook build
23+
working-directory: ./documentation
24+
- name: Deploy
25+
uses: peaceiris/actions-gh-pages@v3
26+
if: success() && github.ref == 'refs/heads/master'
27+
with:
28+
github_token: ${{secrets.GITHUB_TOKEN}}
29+
publish_dir: ./documentation/book
30+
commit_message: ${{github.event.head_commit.message}}

.github/workflows/latex.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
bin/
22
obj/
3+
/documentation/book/

0 commit comments

Comments
 (0)