Skip to content

Commit

Permalink
Add publish docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wobba committed Mar 5, 2024
1 parent 6148272 commit 735284a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Publish Docs only

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

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

- name: Deploy documentation
run: |
pip install markdown-include
pip install mkdocs-material==7.2.4
mkdocs gh-deploy --force

0 comments on commit 735284a

Please sign in to comment.