My utility named mb is yet another static site generator. When you run ./mb build it looks for Markdown files in the current directory and convert them to HTML, then writes them to a .pub directory. I have compiled an mb
executable for Linux AMD64 and placed it in the root directory for simplicity’s sake.
At the moment the only Markdown file is named index.md. See GitHub repo at https://github.com/tomcam/mysite.
# Here is my entire netlify.toml file
[build]
base = ""
publish = ".pub"
command = "./mb build"
If I understand correctly, the netlify.toml
file says that when the mb build
command generates .pub/index.html
from index.md
the file .pub/index.html
will be deployed to the root directory.
The deploy process reports no errors.
Unfortunately nothing is being published at its website, which is https://mysitemb.netlify.com/.
What idiotic thing am I doing to cause this?