Skip to content

Commit c8c780a

Browse files
First pass deployment
1 parent f5fc313 commit c8c780a

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
28+
path: site
29+
- uses: actions/deploy-pages@v4
30+
id: deployment

0 commit comments

Comments
 (0)