diff --git a/.github/workflows/deploy_sphinx.yml b/.github/workflows/deploy_sphinx.yml new file mode 100644 index 0000000..dfb7d62 --- /dev/null +++ b/.github/workflows/deploy_sphinx.yml @@ -0,0 +1,18 @@ +name: Deploy Sphinx documentation to Pages + +on: + push: + branches: [master] # branch to trigger deployment + +jobs: + pages: + runs-on: ubuntu-20.04 + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + permissions: + pages: write + id-token: write + steps: + - id: deployment + uses: sphinx-notes/pages@v3