Skip to content

Commit

Permalink
add gh-pages doc deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
dlstadther committed Oct 15, 2023
1 parent 84f4547 commit 0e9a442
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: docs

on:
push:
branches: [ master ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: 3.x

- name: "Configure git"
run: |
git config user.name "CICD"
git config user.email "[email protected]"
- name: "Install dependencies"
run: |
curl -sSL https://install.python-poetry.org | python3 - --version 1.6.1
poetry install
- name: "Build mkdocs"
run: make doc-deploy

0 comments on commit 0e9a442

Please sign in to comment.