forked from IT-Syndikat/website
set version in footer
This commit is contained in:
parent
10f4d8a23c
commit
b9cd9cb1b5
2 changed files with 9 additions and 0 deletions
|
@ -33,6 +33,12 @@ jobs:
|
|||
submodules: recursive
|
||||
lfs: 'true'
|
||||
|
||||
- name: Replace version and timestamp
|
||||
run: |
|
||||
sed -i -e "s/{{TAG}}/$GITHUB_REF_NAME/g" ./hugo.toml
|
||||
sed -i -e "s/{{COMMIT}}/$GITHUB_SHA/g" ./hugo.toml
|
||||
sed -i -e "s/show_version = false/show_version = true/g" ./hugo.toml
|
||||
|
||||
- name: Build website
|
||||
run: |
|
||||
hugo build --minify
|
||||
|
|
|
@ -44,6 +44,9 @@ defaultContentLanguageInSubdir = false
|
|||
customCSS = ["css/its.css"] # Include custom CSS files
|
||||
customJS = ["js/its.js"] # Include custom JS files
|
||||
imageSizes = [ 320, 640, 960, 1280, 1920 ]
|
||||
tag = "{{TAG}}"
|
||||
commit = "{{COMMIT}}"
|
||||
show_version = false
|
||||
|
||||
[Params.style.vars]
|
||||
highlightColor = "#109c11" # matrix green
|
||||
|
|
Loading…
Add table
Reference in a new issue