Pin Hugo version on Netlify to the most recent one.

So people start with a more modern version of Hugo when
they deploy their site on Netlify.

Signed-off-by: David Calavera <david.calavera@gmail.com>
This commit is contained in:
David Calavera 2017-05-30 11:44:55 -07:00
parent 37c5e0fde6
commit 571859a51b
No known key found for this signature in database
GPG Key ID: DE3D437CCBECE2C4
2 changed files with 10 additions and 0 deletions

View File

@ -86,6 +86,11 @@ You can also click this button:
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/eliwilliamson/victor-hugo) [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/eliwilliamson/victor-hugo)
### Picking the right version of Hugo
Victor-Hugo doesn't make any assumption on which version of Hugo you use, this boilerplate works with any version above v0.13. However, the version
installed on your computer might not be the same version that Netlify uses to build your site. To ensure that those two versions match, open the `netlify.toml`
file and change the `HUGO_VERSION` variable to match the version you use in your computer. If you don't know which version you're using in your computer, you
can open a terminal and run `hugo version`, that will display the version in your computer.
## Enjoy!! ## Enjoy!!

View File

@ -2,5 +2,10 @@
command = "npm run build" command = "npm run build"
publish = "dist" publish = "dist"
# Change the version of Hugo you want to use on Netlify
# by changing this environment variable.
[build.environment]
HUGO_VERSION = "0.21"
[context.deploy-preview] [context.deploy-preview]
command = "npm run build-preview" command = "npm run build-preview"