diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-06-29 11:55:34 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-06-30 09:38:42 +0200 |
commit | ce2d2db32ed5b4330568cdf1ce55e17242eeb334 (patch) | |
tree | 25aea9a841badf6082bae7e93e15fce951830bb0 /.github/workflows/book.yml | |
parent | bff03da17cf5f38ce943c4b4d773b217e7ddef81 (diff) | |
download | askama-ce2d2db32ed5b4330568cdf1ce55e17242eeb334.tar.gz askama-ce2d2db32ed5b4330568cdf1ce55e17242eeb334.tar.bz2 askama-ce2d2db32ed5b4330568cdf1ce55e17242eeb334.zip |
Add CI to build book
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/book.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml new file mode 100644 index 0000000..3ac7c9c --- /dev/null +++ b/.github/workflows/book.yml @@ -0,0 +1,19 @@ +name: Build book +on: + push: +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup mdBook + uses: peaceiris/actions-mdbook@v1 + with: + mdbook-version: 'latest' + - run: mdbook build book + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.ref == 'refs/heads/master' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./book/book |