Currently on:
GO_VERSION
1.21.5
HUGO_VERSION
0.121.1
TZ
Etc/UTC
Trying to upgrade to:
bash-5.2$ go version
go version go1.22.1 darwin/arm64
bash-5.2$ hugo version
hugo v0.124.1-db083b05f16c945fec04f745f0ca8640560cf1ec+extended darwin/arm64 BuildDate=2024-03-20T11:40:10Z VendorInfo=brew
I have been trying to upgrade my site with the following three themes:
Profile Theme - domain.com
Stack Theme - domain.com/blog
Notice Component - installed to both themes
Specifically:
github.com/CaiJimmy/hugo-theme-stack/v3 v3.21.0 // indirect
github.com/gurusabarish/hugo-profile v0.0.0-20231224104236-d49ebeb82b16 // indirect
github.com/martignoni/hugo-notice v0.0.0-20230829114050-2d7d7460bc60 // indirect
When I try to upgrade, I run into other issues.
These are merged into a single folder structure, so that I can serve this under the same domain, but use the first theme for the root site, and the second theme for the second site - and not have things conflict in each by generating content on top of the other page in Cloudflare by running the following:
git fetch --unshallow && hugo --config ./config/root/hugo.yaml && hugo --configDir ./config/blog
Or locally: hugo --config ./config/root/hugo.yaml --logLevel debug && hugo --configDir ./config/blog --logLevel debug && hugo server -c ./public --logLevel debug
However, now after upgrading, I am running into multiple issues:
- Permission Denied Errors - seems to be related to this: Error when building to a folder not owned by the Hugo process · Issue #7302 · gohugoio/hugo · GitHub - but it didn’t happen in the previous versions which are newer than that comment. I can get around this by running from sudo but - that isn’t ideal.
Start building sites …
hugo v0.124.1-db083b05f16c945fec04f745f0ca8640560cf1ec+extended darwin/arm64 BuildDate=2024-03-20T11:40:10Z VendorInfo=brew
INFO static: syncing static files to / duration 15.693125ms
INFO build: step process substep collect files 3541 files_total 3541 duration 60.529ms
INFO build: step process duration 60.568167ms
INFO build: step assemble duration 6.753958ms
WARN found no layout file for "html" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
ERROR Failed to publish Resource for page "/Users/domain/Documents/github/domain.org/public/index.html": open /Users/domain/Documents/github/domain.org/public/bootstrap-5/css/bootstrap.min.css.map: permission denied
ERROR Failed to publish Resource for page "/Users/domain/Documents/github/domain.org/public/index.html": open /Users/domain/Documents/github/domain.org/public/bootstrap-5/js/bootstrap.bundle.js.map: permission denied
ERROR Failed to publish Resource for page "/Users/domain/Documents/github/domain.org/public/index.html": open /Users/domain/Documents/github/domain.org/public/bootstrap-5/js/bootstrap.bundle.min.js.map: permission denied
ERROR Failed to publish Resource for page "/Users/domain/Documents/github/domain.org/public/index.html": open /Users/domain/Documents/github/domain.org/public/404.png: permission denied
ERROR Failed to publish Resource for page "/Users/domain/Documents/github/domain.org/public/index.html": open /Users/domain/Documents/github/domain.org/public/fontawesome-6/svgs/brands/42-group.svg: permission denied
- Constant “Site change” messages, even though I don’t see any files changing prior to the message being generated - I am using watchman from FB to determine what files are being modified, which underlying is fsevents.
Change detected, rebuilding site (#1).
2024-03-23 22:57:41.405 +0100
INFO static: syncing static files to / duration 31.18225ms
INFO build: step process substep collect files 3541 files_total 3541 duration 54.642959ms
INFO build: step process duration 54.684417ms
INFO build: step assemble duration 7.058917ms
WARN found no layout file for "html" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN found no layout file for "html" for kind "home": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
INFO build: step render substep pages site en outputFormat html duration 147.255458ms
INFO deprecated: .Site.Author was deprecated in Hugo v0.124.0 and will be removed in a future release. Use taxonomies instead.
INFO build: step render substep pages site en outputFormat rss duration 621.75µs
INFO build: step render pages 4 content 0 duration 149.906291ms
INFO build: step postProcess duration 9.542µs
INFO build: duration 211.755083ms
Rebuilt in 257 ms
Change detected, rebuilding site (#2).
2024-03-23 22:57:45.908 +0100
INFO static: syncing static files to / duration 31.003417ms
INFO build: step process substep collect files 3541 files_total 3541 duration 52.443292ms
INFO build: step process duration 52.487209ms
INFO build: step assemble duration 7.503625ms
WARN found no layout file for "html" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN found no layout file for "html" for kind "home": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
INFO build: step render substep pages site en outputFormat html duration 195.132917ms
INFO deprecated: .Site.Author was deprecated in Hugo v0.124.0 and will be removed in a future release. Use taxonomies instead.
INFO build: step render substep pages site en outputFormat rss duration 506.375µs
INFO build: step render pages 4 content 0 duration 197.78825ms
INFO build: step postProcess duration 9.5µs
INFO build: duration 257.901167ms
Rebuilt in 310 ms
Change detected, rebuilding site (#3).
2024-03-23 22:57:50.417 +0100
INFO static: syncing static files to / duration 30.60025ms
INFO build: step process substep collect files 3541 files_total 3541 duration 53.555875ms
INFO build: step process duration 53.593875ms
INFO build: step assemble duration 6.834417ms
WARN found no layout file for "html" for kind "taxonomy": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN found no layout file for "html" for kind "home": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
INFO build: step render substep pages site en outputFormat html duration 148.956083ms
INFO deprecated: .Site.Author was deprecated in Hugo v0.124.0 and will be removed in a future release. Use taxonomies instead.
INFO build: step render substep pages site en outputFormat rss duration 405.291µs
INFO build: step render pages 4 content 0 duration 151.397667ms
INFO build: step postProcess duration 9.125µs
INFO build: duration 211.924042ms
Rebuilt in 267 ms
- Other issues, but, the two are my main concern as I can’t actually test anything locally without this being fixed first.
Repo is here.
Alternatively - should I look at redoing the site, and splitting up the blog to a sudomain rather than a subfolder, or is there some better alternative that I can do here to obtain the same end goal?