Skip to content

Commit

Permalink
Fixing documentation build, because for whatever random Python reason…
Browse files Browse the repository at this point in the history
… it decided to stop working at some point.
  • Loading branch information
tpill90 committed Sep 27, 2024
1 parent d9e03a4 commit 46300f4
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 46300f4

Please sign in to comment.