Compare commits

...

3 Commits

Author SHA1 Message Date
716d7b761b Merge pull request 'Correctly set base_url' (#2) from base_url into main
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 17s
Reviewed-on: #2
2025-11-05 22:09:05 +01:00
d0a7893e3f Correct url env var
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 18s
2025-11-05 22:07:21 +01:00
4277ab3103 Add BASE_URL config
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 19s
2025-11-05 22:04:48 +01:00
3 changed files with 4 additions and 6 deletions

View File

@@ -19,7 +19,9 @@ jobs:
# extended: true
- name: Build
run: hugo --minify
run: hugo -b $BASE_URL --minify
env:
BASE_URL: ${{ vars.BASE_URL }}
- name: "Publish"
run: |

View File

@@ -3,7 +3,6 @@
# https://blowfish.page/docs/getting-started/
theme = "blowfish" # UNCOMMENT THIS LINE
# baseURL = "https://your_domain.com/"
defaultContentLanguage = "de"
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles

View File

@@ -1,3 +0,0 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'