Remove root directory from zipped site Before, the site.zip file contained `netlify.toml` and `public`, which Netlify failed to properly deploy. Instead, the _contents_ of `public` need to be at the top level of the zip archive, along with `netlify.toml`. The `zip` tool doesn't have a way to neatly strip off the top level root directory, so the best solution is create the archive in the `public` directory itself.
1 files changed, 3 insertions(+), 1 deletions(-) M .build.yml
M .build.yml => .build.yml +3 -1