From 137ebf6fdc28a98ae9de519c5673df509344238c Mon Sep 17 00:00:00 2001 From: George Cushen Date: Sat, 20 Apr 2024 22:52:24 +0100 Subject: [PATCH] starters: update - plugin framework --- starters/blog/.github/workflows/publish.yaml | 2 +- starters/blog/config/_default/module.yaml | 14 ++++++++++++++ starters/blog/go.mod | 2 +- starters/blog/hugo-blox/blox/all-access/README.md | 7 +++++++ starters/blog/hugo-blox/blox/community/README.md | 5 +++++ starters/blog/hugoblox.yaml | 2 +- starters/blog/netlify.toml | 2 +- .../documentation/.github/workflows/publish.yaml | 2 +- starters/documentation/config/_default/module.yaml | 14 ++++++++++++++ starters/documentation/go.mod | 2 +- .../hugo-blox/blox/all-access/README.md | 7 +++++++ .../hugo-blox/blox/community/README.md | 5 +++++ starters/documentation/hugoblox.yaml | 2 +- starters/documentation/netlify.toml | 2 +- .../landing-page/.github/workflows/publish.yaml | 2 +- starters/landing-page/config/_default/module.yaml | 14 ++++++++++++++ starters/landing-page/go.mod | 2 +- .../hugo-blox/blox/all-access/README.md | 7 +++++++ .../hugo-blox/blox/community/README.md | 5 +++++ starters/landing-page/hugoblox.yaml | 2 +- starters/landing-page/netlify.toml | 2 +- .../link-in-bio/.github/workflows/publish.yaml | 2 +- starters/link-in-bio/config/_default/module.yaml | 14 ++++++++++++++ starters/link-in-bio/go.mod | 2 +- .../hugo-blox/blox/all-access/README.md | 7 +++++++ .../link-in-bio/hugo-blox/blox/community/README.md | 5 +++++ starters/link-in-bio/hugoblox.yaml | 2 +- starters/link-in-bio/netlify.toml | 2 +- starters/resume/.github/workflows/publish.yaml | 2 +- starters/resume/config/_default/module.yaml | 14 ++++++++++++++ starters/resume/go.mod | 2 +- .../resume/hugo-blox/blox/all-access/README.md | 7 +++++++ starters/resume/hugo-blox/blox/community/README.md | 5 +++++ starters/resume/hugoblox.yaml | 2 +- starters/resume/netlify.toml | 2 +- 35 files changed, 150 insertions(+), 20 deletions(-) create mode 100644 starters/blog/hugo-blox/blox/all-access/README.md create mode 100644 starters/blog/hugo-blox/blox/community/README.md create mode 100644 starters/documentation/hugo-blox/blox/all-access/README.md create mode 100644 starters/documentation/hugo-blox/blox/community/README.md create mode 100644 starters/landing-page/hugo-blox/blox/all-access/README.md create mode 100644 starters/landing-page/hugo-blox/blox/community/README.md create mode 100644 starters/link-in-bio/hugo-blox/blox/all-access/README.md create mode 100644 starters/link-in-bio/hugo-blox/blox/community/README.md create mode 100644 starters/resume/hugo-blox/blox/all-access/README.md create mode 100644 starters/resume/hugo-blox/blox/community/README.md diff --git a/starters/blog/.github/workflows/publish.yaml b/starters/blog/.github/workflows/publish.yaml index 43fa3e70..ad4aa856 100644 --- a/starters/blog/.github/workflows/publish.yaml +++ b/starters/blog/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.125.1' + WC_HUGO_VERSION: '0.125.2' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/blog/config/_default/module.yaml b/starters/blog/config/_default/module.yaml index 2d7e6af3..b4b08787 100644 --- a/starters/blog/config/_default/module.yaml +++ b/starters/blog/config/_default/module.yaml @@ -7,3 +7,17 @@ imports: - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind + +# Install any Hugo Blox within the `hugo-blox/blox/` folder +mounts: + - source: hugo-blox/blox/community + target: layouts/partials/blox/community/ + includeFiles: '**.html' + - source: hugo-blox/blox/all-access + target: layouts/partials/blox/ + includeFiles: '**.html' + - source: hugo-blox/blox + target: assets/dist/community/blox/ + includeFiles: '**.css' + - source: layouts + target: layouts diff --git a/starters/blog/go.mod b/starters/blog/go.mod index 68ae1e69..7153348f 100644 --- a/starters/blog/go.mod +++ b/starters/blog/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231125204555-f431a4a2c705 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420123751-9547f9a844cf + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420214532-11a51f8e9f01 ) diff --git a/starters/blog/hugo-blox/blox/all-access/README.md b/starters/blog/hugo-blox/blox/all-access/README.md new file mode 100644 index 00000000..42cbda7d --- /dev/null +++ b/starters/blog/hugo-blox/blox/all-access/README.md @@ -0,0 +1,7 @@ +# Hugo Blox Builder: All Access + +Elevate your web projects with [All Access](https://hugoblox.com/sponsor/), our premium Tailwind blox collection! + +Get access to a diverse range of professionally designed, responsive components — from sleek pricing sections to interactive forms. Save time with our ready-to-use blox, fully customizable to fit your brand, and focus on creating unique features that set your website apart. Optimize your development process and enhance your designs effortlessly with our Tailwind blox! + +Upload All Access blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/blog/hugo-blox/blox/community/README.md b/starters/blog/hugo-blox/blox/community/README.md new file mode 100644 index 00000000..f77979b5 --- /dev/null +++ b/starters/blog/hugo-blox/blox/community/README.md @@ -0,0 +1,5 @@ +# Hugo Blox Builder: Community Blox + +Upload custom or community Hugo Blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). + +Creating your own blox? [Follow the step-by-step tutorial](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/blog/hugoblox.yaml b/starters/blog/hugoblox.yaml index 8203c6b3..cc53fc8f 100644 --- a/starters/blog/hugoblox.yaml +++ b/starters/blog/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.125.1' + hugo_version: '0.125.2' diff --git a/starters/blog/netlify.toml b/starters/blog/netlify.toml index ab1b986a..b7d6c5df 100644 --- a/starters/blog/netlify.toml +++ b/starters/blog/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.125.1" + HUGO_VERSION = "0.125.2" GO_VERSION = "1.21.5" NODE_VERSION = "21.1.0" HUGO_ENABLEGITINFO = "true" diff --git a/starters/documentation/.github/workflows/publish.yaml b/starters/documentation/.github/workflows/publish.yaml index 43fa3e70..ad4aa856 100644 --- a/starters/documentation/.github/workflows/publish.yaml +++ b/starters/documentation/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.125.1' + WC_HUGO_VERSION: '0.125.2' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/documentation/config/_default/module.yaml b/starters/documentation/config/_default/module.yaml index 2d7e6af3..b4b08787 100644 --- a/starters/documentation/config/_default/module.yaml +++ b/starters/documentation/config/_default/module.yaml @@ -7,3 +7,17 @@ imports: - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind + +# Install any Hugo Blox within the `hugo-blox/blox/` folder +mounts: + - source: hugo-blox/blox/community + target: layouts/partials/blox/community/ + includeFiles: '**.html' + - source: hugo-blox/blox/all-access + target: layouts/partials/blox/ + includeFiles: '**.html' + - source: hugo-blox/blox + target: assets/dist/community/blox/ + includeFiles: '**.css' + - source: layouts + target: layouts diff --git a/starters/documentation/go.mod b/starters/documentation/go.mod index 6eee387a..bb716b9a 100644 --- a/starters/documentation/go.mod +++ b/starters/documentation/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240217212918-ae7f0c597978 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420123751-9547f9a844cf + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420214532-11a51f8e9f01 ) diff --git a/starters/documentation/hugo-blox/blox/all-access/README.md b/starters/documentation/hugo-blox/blox/all-access/README.md new file mode 100644 index 00000000..42cbda7d --- /dev/null +++ b/starters/documentation/hugo-blox/blox/all-access/README.md @@ -0,0 +1,7 @@ +# Hugo Blox Builder: All Access + +Elevate your web projects with [All Access](https://hugoblox.com/sponsor/), our premium Tailwind blox collection! + +Get access to a diverse range of professionally designed, responsive components — from sleek pricing sections to interactive forms. Save time with our ready-to-use blox, fully customizable to fit your brand, and focus on creating unique features that set your website apart. Optimize your development process and enhance your designs effortlessly with our Tailwind blox! + +Upload All Access blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/documentation/hugo-blox/blox/community/README.md b/starters/documentation/hugo-blox/blox/community/README.md new file mode 100644 index 00000000..f77979b5 --- /dev/null +++ b/starters/documentation/hugo-blox/blox/community/README.md @@ -0,0 +1,5 @@ +# Hugo Blox Builder: Community Blox + +Upload custom or community Hugo Blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). + +Creating your own blox? [Follow the step-by-step tutorial](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/documentation/hugoblox.yaml b/starters/documentation/hugoblox.yaml index 8203c6b3..cc53fc8f 100644 --- a/starters/documentation/hugoblox.yaml +++ b/starters/documentation/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.125.1' + hugo_version: '0.125.2' diff --git a/starters/documentation/netlify.toml b/starters/documentation/netlify.toml index 53b89a6c..4a1e87c0 100644 --- a/starters/documentation/netlify.toml +++ b/starters/documentation/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.125.1" + HUGO_VERSION = "0.125.2" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/landing-page/.github/workflows/publish.yaml b/starters/landing-page/.github/workflows/publish.yaml index 43fa3e70..ad4aa856 100644 --- a/starters/landing-page/.github/workflows/publish.yaml +++ b/starters/landing-page/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.125.1' + WC_HUGO_VERSION: '0.125.2' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/landing-page/config/_default/module.yaml b/starters/landing-page/config/_default/module.yaml index 2d7e6af3..b4b08787 100644 --- a/starters/landing-page/config/_default/module.yaml +++ b/starters/landing-page/config/_default/module.yaml @@ -7,3 +7,17 @@ imports: - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind + +# Install any Hugo Blox within the `hugo-blox/blox/` folder +mounts: + - source: hugo-blox/blox/community + target: layouts/partials/blox/community/ + includeFiles: '**.html' + - source: hugo-blox/blox/all-access + target: layouts/partials/blox/ + includeFiles: '**.html' + - source: hugo-blox/blox + target: assets/dist/community/blox/ + includeFiles: '**.css' + - source: layouts + target: layouts diff --git a/starters/landing-page/go.mod b/starters/landing-page/go.mod index 206d5ab9..989f56be 100644 --- a/starters/landing-page/go.mod +++ b/starters/landing-page/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231108143325-448ed0e3bd2b - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420123751-9547f9a844cf + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420214532-11a51f8e9f01 ) diff --git a/starters/landing-page/hugo-blox/blox/all-access/README.md b/starters/landing-page/hugo-blox/blox/all-access/README.md new file mode 100644 index 00000000..42cbda7d --- /dev/null +++ b/starters/landing-page/hugo-blox/blox/all-access/README.md @@ -0,0 +1,7 @@ +# Hugo Blox Builder: All Access + +Elevate your web projects with [All Access](https://hugoblox.com/sponsor/), our premium Tailwind blox collection! + +Get access to a diverse range of professionally designed, responsive components — from sleek pricing sections to interactive forms. Save time with our ready-to-use blox, fully customizable to fit your brand, and focus on creating unique features that set your website apart. Optimize your development process and enhance your designs effortlessly with our Tailwind blox! + +Upload All Access blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/landing-page/hugo-blox/blox/community/README.md b/starters/landing-page/hugo-blox/blox/community/README.md new file mode 100644 index 00000000..f77979b5 --- /dev/null +++ b/starters/landing-page/hugo-blox/blox/community/README.md @@ -0,0 +1,5 @@ +# Hugo Blox Builder: Community Blox + +Upload custom or community Hugo Blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). + +Creating your own blox? [Follow the step-by-step tutorial](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/landing-page/hugoblox.yaml b/starters/landing-page/hugoblox.yaml index 8203c6b3..cc53fc8f 100644 --- a/starters/landing-page/hugoblox.yaml +++ b/starters/landing-page/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.125.1' + hugo_version: '0.125.2' diff --git a/starters/landing-page/netlify.toml b/starters/landing-page/netlify.toml index ed40bd2a..363a4112 100644 --- a/starters/landing-page/netlify.toml +++ b/starters/landing-page/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.125.1" + HUGO_VERSION = "0.125.2" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/link-in-bio/.github/workflows/publish.yaml b/starters/link-in-bio/.github/workflows/publish.yaml index b0f85a48..8bcc9448 100644 --- a/starters/link-in-bio/.github/workflows/publish.yaml +++ b/starters/link-in-bio/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.125.1' + WC_HUGO_VERSION: '0.125.2' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/link-in-bio/config/_default/module.yaml b/starters/link-in-bio/config/_default/module.yaml index 2d7e6af3..b4b08787 100644 --- a/starters/link-in-bio/config/_default/module.yaml +++ b/starters/link-in-bio/config/_default/module.yaml @@ -7,3 +7,17 @@ imports: - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind + +# Install any Hugo Blox within the `hugo-blox/blox/` folder +mounts: + - source: hugo-blox/blox/community + target: layouts/partials/blox/community/ + includeFiles: '**.html' + - source: hugo-blox/blox/all-access + target: layouts/partials/blox/ + includeFiles: '**.html' + - source: hugo-blox/blox + target: assets/dist/community/blox/ + includeFiles: '**.css' + - source: layouts + target: layouts diff --git a/starters/link-in-bio/go.mod b/starters/link-in-bio/go.mod index 7206d22a..19a82c2d 100644 --- a/starters/link-in-bio/go.mod +++ b/starters/link-in-bio/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231108143325-448ed0e3bd2b - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420123751-9547f9a844cf + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420214532-11a51f8e9f01 ) diff --git a/starters/link-in-bio/hugo-blox/blox/all-access/README.md b/starters/link-in-bio/hugo-blox/blox/all-access/README.md new file mode 100644 index 00000000..42cbda7d --- /dev/null +++ b/starters/link-in-bio/hugo-blox/blox/all-access/README.md @@ -0,0 +1,7 @@ +# Hugo Blox Builder: All Access + +Elevate your web projects with [All Access](https://hugoblox.com/sponsor/), our premium Tailwind blox collection! + +Get access to a diverse range of professionally designed, responsive components — from sleek pricing sections to interactive forms. Save time with our ready-to-use blox, fully customizable to fit your brand, and focus on creating unique features that set your website apart. Optimize your development process and enhance your designs effortlessly with our Tailwind blox! + +Upload All Access blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/link-in-bio/hugo-blox/blox/community/README.md b/starters/link-in-bio/hugo-blox/blox/community/README.md new file mode 100644 index 00000000..f77979b5 --- /dev/null +++ b/starters/link-in-bio/hugo-blox/blox/community/README.md @@ -0,0 +1,5 @@ +# Hugo Blox Builder: Community Blox + +Upload custom or community Hugo Blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). + +Creating your own blox? [Follow the step-by-step tutorial](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/link-in-bio/hugoblox.yaml b/starters/link-in-bio/hugoblox.yaml index 8203c6b3..cc53fc8f 100644 --- a/starters/link-in-bio/hugoblox.yaml +++ b/starters/link-in-bio/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.125.1' + hugo_version: '0.125.2' diff --git a/starters/link-in-bio/netlify.toml b/starters/link-in-bio/netlify.toml index ed40bd2a..363a4112 100644 --- a/starters/link-in-bio/netlify.toml +++ b/starters/link-in-bio/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.125.1" + HUGO_VERSION = "0.125.2" HUGO_ENABLEGITINFO = "true" [context.production.environment] diff --git a/starters/resume/.github/workflows/publish.yaml b/starters/resume/.github/workflows/publish.yaml index b0f85a48..8bcc9448 100644 --- a/starters/resume/.github/workflows/publish.yaml +++ b/starters/resume/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ name: Deploy website to GitHub Pages env: - WC_HUGO_VERSION: '0.125.1' + WC_HUGO_VERSION: '0.125.2' on: # Trigger the workflow every time you push to the `main` branch diff --git a/starters/resume/config/_default/module.yaml b/starters/resume/config/_default/module.yaml index 2d7e6af3..b4b08787 100644 --- a/starters/resume/config/_default/module.yaml +++ b/starters/resume/config/_default/module.yaml @@ -7,3 +7,17 @@ imports: - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind + +# Install any Hugo Blox within the `hugo-blox/blox/` folder +mounts: + - source: hugo-blox/blox/community + target: layouts/partials/blox/community/ + includeFiles: '**.html' + - source: hugo-blox/blox/all-access + target: layouts/partials/blox/ + includeFiles: '**.html' + - source: hugo-blox/blox + target: assets/dist/community/blox/ + includeFiles: '**.css' + - source: layouts + target: layouts diff --git a/starters/resume/go.mod b/starters/resume/go.mod index d74b01f7..2d4b6f63 100644 --- a/starters/resume/go.mod +++ b/starters/resume/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231125200520-804c70f7efb8 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420123751-9547f9a844cf + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240420214532-11a51f8e9f01 ) diff --git a/starters/resume/hugo-blox/blox/all-access/README.md b/starters/resume/hugo-blox/blox/all-access/README.md new file mode 100644 index 00000000..42cbda7d --- /dev/null +++ b/starters/resume/hugo-blox/blox/all-access/README.md @@ -0,0 +1,7 @@ +# Hugo Blox Builder: All Access + +Elevate your web projects with [All Access](https://hugoblox.com/sponsor/), our premium Tailwind blox collection! + +Get access to a diverse range of professionally designed, responsive components — from sleek pricing sections to interactive forms. Save time with our ready-to-use blox, fully customizable to fit your brand, and focus on creating unique features that set your website apart. Optimize your development process and enhance your designs effortlessly with our Tailwind blox! + +Upload All Access blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/resume/hugo-blox/blox/community/README.md b/starters/resume/hugo-blox/blox/community/README.md new file mode 100644 index 00000000..f77979b5 --- /dev/null +++ b/starters/resume/hugo-blox/blox/community/README.md @@ -0,0 +1,5 @@ +# Hugo Blox Builder: Community Blox + +Upload custom or community Hugo Blox to this folder and they will be automatically installed to your site, [ready for use in your pages](https://docs.hugoblox.com/getting-started/page-builder/). + +Creating your own blox? [Follow the step-by-step tutorial](https://docs.hugoblox.com/getting-started/page-builder/). diff --git a/starters/resume/hugoblox.yaml b/starters/resume/hugoblox.yaml index 8203c6b3..cc53fc8f 100644 --- a/starters/resume/hugoblox.yaml +++ b/starters/resume/hugoblox.yaml @@ -1,2 +1,2 @@ build: - hugo_version: '0.125.1' + hugo_version: '0.125.2' diff --git a/starters/resume/netlify.toml b/starters/resume/netlify.toml index ed40bd2a..363a4112 100644 --- a/starters/resume/netlify.toml +++ b/starters/resume/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.125.1" + HUGO_VERSION = "0.125.2" HUGO_ENABLEGITINFO = "true" [context.production.environment]