Skip to content

Commit

Permalink
Merge pull request #385 from tpill90/FixMkdocsBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 committed Sep 27, 2024
2 parents d9e03a4 + 46300f4 commit b29f378
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/deploy-documentation.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: deploy-documentation
run-name: "Deploy Documentation"

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: >
cd docs;
pip install -r requirements.txt;
export ENABLED_HTMLPROOFER=true;
name: deploy-documentation
run-name: "Deploy Documentation"

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
container:
image: python:3.11
steps:
- uses: actions/checkout@v2
- run: git config --global --add safe.directory "*";
- run: >
cd docs;
pip install -r requirements.txt;
export ENABLED_HTMLPROOFER=true;
mkdocs gh-deploy --force --strict;
5 changes: 3 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pathspec
mkdocs == 1.4.2
mkdocs-awesome-pages-plugin
mkdocs-static-i18n
mkdocs-awesome-pages-plugin
mkdocs-static-i18n
mkdocs-macros-plugin
mkdocs-htmlproofer-plugin

0 comments on commit b29f378

Please sign in to comment.