Skip to content

Commit

Permalink
supressing rm error on no poetry.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
0Hughman0 authored Oct 24, 2024
1 parent b82a653 commit 809f895
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
clean: false
- name: Build Docs
run: |
rm poetry.lock
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 @@ -63,7 +63,7 @@ jobs:
clean: false
- name: Build 0.2.x Docs
run: |
rm poetry.lock
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 @@ -73,7 +73,7 @@ jobs:
clean: false
- name: Build Docs 0.3.x
run: |
rm poetry.lock
rm -f 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 809f895

Please sign in to comment.