Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaseastewart committed Aug 16, 2024
1 parent 9e4225b commit 0f6c350
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
virtualenvs-in-project: true
installer-parallel: true
- name: Install project
run: poetry install --no-interaction
run: make install
- name: Build Docs
run: make docs
- name: Upload artifact
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ htmlcov/

#mkdocs
site/
_site/
docs/docstrings/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ linting-check :

docs :
poetry run lazydocs --output-path="./docs/docstrings" --overview-file="README.md" --src-base-url="https://github.com/chaseastewart/fhir-converter/blob/master/" fhir_converter
poetry run mkdocs build --site-dir ./site
poetry run mkdocs build --site-dir ./_site

init: env install
update : update-lock install
Expand Down

0 comments on commit 0f6c350

Please sign in to comment.