Skip to content

Commit

Permalink
Fix Netlify Deploy
Browse files Browse the repository at this point in the history
* Install MkDocs via pip3

* Change Netlify command

* Change Poetry for MkDocs

* Add MkDocs Material to pip install

* Imaging pip

* add markdown_link_attr_modifier

* Remove old Ruby version
  • Loading branch information
crweiner authored Oct 31, 2024
1 parent 77b24d4 commit 0ed7f70
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[build]
command = "mkdocs build --config-file mkdocs.yml"
command = """
pip3 install mkdocs mkdocs-material[imaging] markdown_link_attr_modifier &&
mkdocs build --config-file mkdocs.yml
"""
publish = "site"

[build.environment]
RUBY_VERSION = "2.7.4"
PYTHON_VERSION = "3.8"

0 comments on commit 0ed7f70

Please sign in to comment.