1 parent c6cfa15 commit fd7e3f1Copy full SHA for fd7e3f1
.github/workflows/ci-test.yml
@@ -63,4 +63,6 @@ jobs:
63
HUGO_VERSION=$(hugo version | grep -Eo '[0-9]+\.[0-9]+((\.[0-9]+)?)')
64
# The option changed in 0.93.0: https://github.com/gohugoio/hugo/releases/tag/v0.93.0
65
I18N_OPT=$([ $(ver $HUGO_VERSION) -lt $(ver 0.93.0) ] && echo "--i18n-warnings" || echo "--printI18nWarnings")
66
- HUGO_THEME="Mainroad" hugo --themesDir ../.. $I18N_OPT -v
+ # The option deprecated in v0.114.0 (WARNs >= 0.120.0): https://github.com/gohugoio/hugo/releases/tag/v0.114.0
67
+ LOG_OPT=$([ $(ver $HUGO_VERSION) -lt $(ver 0.114.0) ] && echo "--verbose" || echo "--logLevel info")
68
+ HUGO_THEME="Mainroad" hugo --themesDir ../.. $I18N_OPT $LOG_OPT
0 commit comments