Deploy-Pages #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy-Pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- docs/source | |
- .github/workflows/pages.yml | |
workflow_dispatch: | |
jobs: | |
build-and-deploy-doc: | |
name: Build documentation and deploy it to GH Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
env: | |
ASSETS: assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@main | |
- name: Build documentation using Sphinx | |
run: | | |
docker run \ | |
--rm \ | |
-v ${PWD}:/project \ | |
-w /project \ | |
sphinxdoc/sphinx:latest \ | |
sphinx-build docs/source ${{ env.ASSETS }}/ | |
- name: Setup GitHub Pages | |
uses: actions/configure-pages@main | |
- name: Upload HTML | |
uses: actions/upload-pages-artifact@main | |
with: | |
path: ${{ env.ASSETS }} | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@main |