diff options
-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 |