Skip to content

Commit

Permalink
Merge branch 'main' into 0.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
0Hughman0 authored Nov 4, 2024
2 parents 2b42900 + df8bacb commit 24c0b14
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ jobs:
- name: Build Main Docs
run: |
poetry install --with docs
poetry run mkdocs build -f doc_src/mkdocs.yml -d docs/latest
poetry run mkdocs build -f doc_src/mkdocs.yml -d ../docs/latest
- name: Checkout 0.1.x
uses: actions/checkout@v3
with:
ref: 0.1.x
clean: false
- name: Build Docs
run: |
rm -f 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 +63,7 @@ jobs:
clean: false
- name: Build 0.2.x Docs
run: |
rm -f poetry.lock
poetry install --with docs
poetry run sphinx-build doc_src docs/0.2.x
- name: Checkout 0.3.x
Expand All @@ -71,8 +73,9 @@ jobs:
clean: false
- name: Build Docs 0.3.x
run: |
rm -f poetry.lock
poetry install --with docs
poetry run mkdocs build -f doc_src/mkdocs.yml -d docs/0.3.x
poetry run mkdocs build -f doc_src/mkdocs.yml -d ../docs/0.3.x
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit 24c0b14

Please sign in to comment.