We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab778f1 commit 74f294fCopy full SHA for 74f294f
.github/workflows/gh-pages.yml
@@ -0,0 +1,28 @@
1
+name: Publish Github Pages
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
7
+concurrency:
8
+ group: gh-${{ github.ref }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ pages:
13
+ runs-on: ubuntu-latest
14
+ environment:
15
+ name: github-pages
16
+ url: ${{ steps.deployment.outputs.page_url }}
17
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18
+ permissions:
19
+ pages: write
20
+ id-token: write
21
+ steps:
22
+ - id: deployment
23
+ uses: sphinx-notes/pages@v3
24
+ with:
25
+ documentation_path: ./docs/source
26
+ requirements_path: ./docs/requirements.txt
27
+ cache: true
28
+ python_version: 3.12
docs/requirements.txt
@@ -0,0 +1,3 @@
+sphinx
+sphinx-rtd-theme
+myst-parser
0 commit comments