From 0169b20ff2ce62b7840a1210f3819dc52bc017d9 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Sun, 28 May 2023 22:34:16 -0400 Subject: [PATCH] Auto-publish mdbook (#684) --- .github/workflows/build-deploy-docs.yml | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build-deploy-docs.yml diff --git a/.github/workflows/build-deploy-docs.yml b/.github/workflows/build-deploy-docs.yml new file mode 100644 index 000000000..07be27433 --- /dev/null +++ b/.github/workflows/build-deploy-docs.yml @@ -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