Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@ 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

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
hugo-version: '0.119.0'
extended: true

- name: Build
Expand Down
10 changes: 7 additions & 3 deletions config/_default/menus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions content/home/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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-0.20230418194707-ca2775cd57a2 // indirect
)
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
publish = "public"

[build.environment]
HUGO_VERSION = "0.97.3"
HUGO_VERSION = "0.119.0"
HUGO_ENABLEGITINFO = "true"

[context.production.environment]
Expand Down