Skip to content

Commit

Permalink
Merge pull request #188 from 0Hughman0/fixing-docs
Browse files Browse the repository at this point in the history
fixed old poetry.locks breaking things
  • Loading branch information
0Hughman0 authored Oct 23, 2024
2 parents 5f0a34d + afe7ccb commit f839428
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
clean: false
- name: Build Main Docs
run: |
poetry install --with docs
rm poetry.lock
poetry install --with docs --i
poetry run sphinx-build doc_src docs/latest -D version=latest
- name: Checkout 0.1.x
uses: actions/checkout@v3
Expand All @@ -53,6 +54,7 @@ jobs:
clean: false
- name: Build Docs
run: |
rm poetry.lock
poetry install --with docs
poetry run sphinx-build doc_src docs/0.1.x
- name: Checkout 0.2.x
Expand All @@ -62,6 +64,7 @@ jobs:
clean: false
- name: Build 0.2.x Docs
run: |
rm poetry.lock
poetry install --with docs
poetry run sphinx-build doc_src docs/0.2.x
- name: Checkout 0.3.x
Expand All @@ -71,6 +74,7 @@ jobs:
clean: false
- name: Build Docs 0.3.x
run: |
rm poetry.lock
poetry install --with docs
poetry run mkdocs build -f=doc_src/mkdocs.yml -d=docs/0.3.x
- name: Setup Pages
Expand Down

0 comments on commit f839428

Please sign in to comment.