diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 85d77eb..881144b 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,8 +15,8 @@ permissions: # Environment variables available to all jobs and steps in this workflow env: HUGO_ENV: production - HUGO_VERSION: "0.121.2" - GO_VERSION: "1.20.5" + HUGO_VERSION: "0.124.1" + GO_VERSION: "1.22.2" NODE_VERSION: "20.0.0" TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }} TINA_TOKEN: ${{ vars.TINA_TOKEN }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb785dc..c4120a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,8 +3,8 @@ stages: variables: HUGO_ENV: production - HUGO_VERSION: "0.121.2" - GO_VERSION: "1.20.5" + HUGO_VERSION: "0.124.1" + GO_VERSION: "1.22.2" NODE_VERSION: "18.16.1" cache: diff --git a/amplify.yml b/amplify.yml index 76d375a..d6d960f 100644 --- a/amplify.yml +++ b/amplify.yml @@ -4,16 +4,16 @@ frontend: preBuild: commands: - yum install -y curl - - curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.121.2/hugo_extended_0.121.2_Linux-64bit.tar.gz" - - tar -xvf hugo_extended_0.121.2_Linux-64bit.tar.gz + - curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.124.1/hugo_extended_0.124.1_Linux-64bit.tar.gz" + - tar -xvf hugo_extended_0.124.1_Linux-64bit.tar.gz - mv hugo /usr/local/bin/ - - rm hugo_extended_0.121.2_Linux-64bit.tar.gz - - echo "HUGO 0.121.2 INSTALLED" - - curl -LO "https://dl.google.com/go/go1.20.5.linux-amd64.tar.gz" - - tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz + - rm hugo_extended_0.124.1_Linux-64bit.tar.gz + - echo "HUGO 0.124.1 INSTALLED" + - curl -LO "https://dl.google.com/go/go1.22.2.linux-amd64.tar.gz" + - tar -C /usr/local -xzf go1.22.2.linux-amd64.tar.gz - export PATH=$PATH:/usr/local/go/bin - - rm go1.20.5.linux-amd64.tar.gz - - echo "GO 1.20.5 INSTALLED" + - rm go1.22.2.linux-amd64.tar.gz + - echo "GO 1.22.2 INSTALLED" - npm install build: commands: diff --git a/netlify.toml b/netlify.toml index 2418850..717a07a 100755 --- a/netlify.toml +++ b/netlify.toml @@ -3,5 +3,5 @@ publish = "public" command = "yarn project-setup; yarn build" [build.environment] -HUGO_VERSION = "0.121.2" -GO_VERSION = "1.20.5" +HUGO_VERSION = "0.124.1" +GO_VERSION = "1.22.2" diff --git a/readme.md b/readme.md index 2cbf719..eeb1974 100755 --- a/readme.md +++ b/readme.md @@ -9,8 +9,8 @@
-
-
+
+
@@ -226,9 +226,9 @@ Copyright (c) 2023 - Present, Designed & Developed by [Zeon Studio](https://zeon
## 🖼️ Showcase
-List of some projects people are building with **Hugoplate**!
+List of some projects people are building with **Hugoplate**!
-| [](https://open-neuromorphic.org/) | [](https://aimodels.org/) | [](https://www.hugobricks.preview.usecue.com/) | [](https://ono.day/)
+| [](https://open-neuromorphic.org/) | [](https://aimodels.org/) | [](https://www.hugobricks.preview.usecue.com/) | [](https://ono.day/)
|:---:|:---:|:---:|:---:|
| **Open Neuromorphic** | **AI Models** | **Hugobricks** | **ONO LLC** |
diff --git a/theme.toml b/theme.toml
index 0a68031..125f89c 100644
--- a/theme.toml
+++ b/theme.toml
@@ -4,7 +4,7 @@ licenselink = "https://github.com/zeon-studio/hugoplate/blob/main/LICENSE"
description = "Hugoplate is a free starter template built with Hugo, and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time."
homepage = "https://github.com/zeon-studio/hugoplate"
demosite = "https://zeon.studio/preview?project=hugoplate"
-min_version = "0.121.2"
+min_version = "0.124.1"
tags = [
"blog",
diff --git a/vercel-build.sh b/vercel-build.sh
index f00c616..49122c7 100755
--- a/vercel-build.sh
+++ b/vercel-build.sh
@@ -2,8 +2,8 @@
# default versions
NODE_VERSION='18.16.1';
-GO_VERSION='1.20.5';
-HUGO_VERSION='0.121.2';
+GO_VERSION='1.22.2';
+HUGO_VERSION='0.124.1';
# install Node.js
# echo "Installing Node.js $NODE_VERSION..."