From e1907e7a6fea4ae8dbff2f129d1a69ffb58f1850 Mon Sep 17 00:00:00 2001 From: Florian Kaiser <37000563+flok@users.noreply.github.com> Date: Sun, 14 Aug 2022 20:29:41 +0200 Subject: [PATCH] Add github action to publish docs --- .github/workflows/docs_publish.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/docs_publish.yml diff --git a/.github/workflows/docs_publish.yml b/.github/workflows/docs_publish.yml new file mode 100644 index 0000000..6da867d --- /dev/null +++ b/.github/workflows/docs_publish.yml @@ -0,0 +1,22 @@ +name: publish_docs +on: [push, pull_request, workflow_dispatch] +jobs: + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - name: Install dependencies + run: | + pip install sphinx furo + - name: Sphinx build + run: | + sphinx-build docs/source docs/build + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} + with: + publish_branch: gh-pages + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/build/ + force_orphan: true \ No newline at end of file