Skip to content

Commit

Permalink
add docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-1991 committed Dec 17, 2024
1 parent 0f872a4 commit 787b1a1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Docs

on:
push:
paths:
- "docs/**"
workflow_dispatch:

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
path: .cache
key: ${{ github.ref }}
- run: pip install mkdocs-material jupyter nbconvert mkdocs-jupyter
- run: mkdocs gh-deploy --force

0 comments on commit 787b1a1

Please sign in to comment.