netlify: init

This commit is contained in:
Harsh Shandilya 2022-10-06 19:42:24 +05:30
parent f64289bb1f
commit 0c25ee7767
2 changed files with 10 additions and 2 deletions

View File

@ -35,10 +35,12 @@
{
"description": "Update Hugo version in Actions workflows",
"fileMatch": [
".yml$"
".yml$",
".toml$"
],
"matchStrings": [
"hugo-version: '(?<currentValue>.*?)'"
"hugo-version: '(?<currentValue>.*?)'",
"HUGO_VERSION = \"(?<currentValue>.*?)\""
],
"depNameTemplate": "gohugoio/hugo",
"datasourceTemplate": "github-releases"

6
netlify.toml Normal file
View File

@ -0,0 +1,6 @@
[build]
command = "hugo"
publish = "public"
[build.environment]
HUGO_VERSION = "0.104.3"