Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation build #64

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,30 @@ jobs:
name: Build documentation website with MkDocs
runs-on: ubuntu-latest
steps:
- name: Configure Python
uses: actions/setup-python@v5
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install mkdocs
run: pipenv install
python-version: "3.11"

- name: Install poetry
run: pip install -U poetry

- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Install dependencies
run: poetry install --no-root

- name: Setup Pages
id: pages
uses: actions/configure-pages@v4

- name: Build with mkdocs
run: pipenv run mkdocs build
run: poetry run mkdocs build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
15 changes: 0 additions & 15 deletions Pipfile

This file was deleted.

Loading
Loading