Skip to content

Commit

Permalink
Create deploy_docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 18, 2024
1 parent d3a3d57 commit eb9c93c
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy Docs

on:
push:
branches:
- master
- main

permissions:
contents: write

jobs:

deploy:

name: Deploy Docs

runs-on: ubuntu-latest

steps:

-
name: Checkout
uses: actions/checkout@v4

-
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x

-
name: PIP Install mkdocs-material
run: |
pip install mkdocs-material
-
name: PIP Install mkdocstrings
run: |
pip install mkdocstrings[python]>=0.18
-
name: MKDocs Deploy
run: |
mkdocs gh-deploy --force

0 comments on commit eb9c93c

Please sign in to comment.