Skip to content

Commit

Permalink
deploy docs (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn authored Dec 17, 2023
1 parent 43a7794 commit 5ef6860
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docs

on:
push:
branches:
- develop
paths:
- 'docs/*'
- 'mkdocs.yml'

permissions:
contents: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force

0 comments on commit 5ef6860

Please sign in to comment.