From 183edd017b86a0fead51826230f5e7212f800d7f Mon Sep 17 00:00:00 2001 From: Carlos Maltzahn Date: Fri, 17 Jan 2025 23:13:48 -0800 Subject: [PATCH 1/5] include 2025 --- config/_default/menus.yaml | 10 +++++++--- content/home/welcome.md | 4 ++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/config/_default/menus.yaml b/config/_default/menus.yaml index 0720d21..f492b1d 100644 --- a/config/_default/menus.yaml +++ b/config/_default/menus.yaml @@ -7,18 +7,22 @@ main: - name: Events identifier: events weight: 10 + - name: ACM REP 2025 + parent: events + url: https://acm-rep.github.io/2025 + weight: 10 - name: ACM REP 2024 parent: events url: https://acm-rep.github.io/2024 - weight: 10 + weight: 20 - name: ACM REP 2023 parent: events url: https://acm-rep.github.io/2023 - weight: 20 + weight: 30 - name: History parent: events url: history - weight: 20 + weight: 40 - name: Blog url: "#blog" weight: 15 diff --git a/content/home/welcome.md b/content/home/welcome.md index 14574a9..0c85bd7 100644 --- a/content/home/welcome.md +++ b/content/home/welcome.md @@ -10,8 +10,8 @@ title: "ACM REP" hero_media: "acm.png" cta: - url: "https://acm-rep.github.io/2024" - label: "ACM REP 2024 →" + url: "https://acm-rep.github.io/2025" + label: "ACM REP 2025 →" #hero_media: welcome.jpg design: From 9a648235760f49527fe15e814f1d6249d5a6f194 Mon Sep 17 00:00:00 2001 From: Carlos Maltzahn Date: Sat, 18 Jan 2025 00:45:44 -0800 Subject: [PATCH 2/5] bump netlify hugo version --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index c077cb2..e35a1fc 100644 --- a/netlify.toml +++ b/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.97.3" + HUGO_VERSION = "0.119.0" HUGO_ENABLEGITINFO = "true" [context.production.environment] From 8b31871604bf80e058eae7d8499250e1d0dc3322 Mon Sep 17 00:00:00 2001 From: Carlos Maltzahn Date: Sat, 18 Jan 2025 00:51:34 -0800 Subject: [PATCH 3/5] bump wowchemy version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 8f271d8..6d98ed4 100644 --- a/go.mod +++ b/go.mod @@ -5,5 +5,5 @@ go 1.15 require ( github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.0 // indirect github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.6.0 // indirect + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1 // indirect ) From 7792910310e77a510496dbc766d57481de1568b9 Mon Sep 17 00:00:00 2001 From: Carlos Maltzahn Date: Sat, 18 Jan 2025 00:53:50 -0800 Subject: [PATCH 4/5] bump wowchemy version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 6d98ed4..157fa87 100644 --- a/go.mod +++ b/go.mod @@ -5,5 +5,5 @@ go 1.15 require ( github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.0 // indirect github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1 // indirect + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1-0.20230418194707-ca2775cd57a2 // indirect ) From 12ddf45740f633bb325e96791cd16db7ec711d8a Mon Sep 17 00:00:00 2001 From: Carlos Maltzahn Date: Sat, 18 Jan 2025 01:14:39 -0800 Subject: [PATCH 5/5] fix workflow hugo version --- .github/workflows/gh-pages.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 3e58f53..18889ab 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -9,8 +9,10 @@ on: jobs: deploy: runs-on: ubuntu-22.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod @@ -18,7 +20,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: - hugo-version: 'latest' + hugo-version: '0.119.0' extended: true - name: Build