This repository was archived by the owner on Jan 27, 2025. It is now read-only.
build/publish fix #45
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 Static Pages | |
on: | |
push: | |
branches: main # branch to trigger deployment | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
builddeploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Sphinx Builder | |
uses: Kjuly/sphinx-builder@1.4.0 | |
with: | |
source_root: 'docs' | |
build_root: 'build' | |
default_lang: 'en' | |
lang_mappings: '' | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload Pages Artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: '${{ github.workspace }}/build/html' | |
- name: deployment | |
id: deployment | |
uses: actions/deploy-pages@v4 |