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 f5fc313 commit c8c780aCopy full SHA for c8c780a
1 file changed
.github/workflows/docs.yml
@@ -0,0 +1,30 @@
1
+name: Documentation
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - main
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
+jobs:
12
+ deploy:
13
+ environment:
14
+ name: github-pages
15
+ url: ${{ steps.deployment.outputs.page_url }}
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/configure-pages@v5
19
+ - uses: actions/checkout@v5
20
+ - uses: actions/setup-python@v5
21
+ with:
22
+ python-version: 3.x
23
+ - run: pip install -e .
24
+ - run: mkdocs --help
25
+ - run: mkdocs build
26
+ - uses: actions/upload-pages-artifact@v4
27
28
+ path: site
29
+ - uses: actions/deploy-pages@v4
30
+ id: deployment
0 commit comments