Replace --i18n-warnings with --printI18nWarnings for new hugo versions in CI
This commit is contained in:
parent
2b03419d52
commit
b30ec254c8
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci-test.yml
vendored
8
.github/workflows/ci-test.yml
vendored
|
@ -42,6 +42,7 @@ jobs:
|
||||||
- '0.76.5' # https://github.com/gohugoio/hugo/issues/7822
|
- '0.76.5' # https://github.com/gohugoio/hugo/issues/7822
|
||||||
# - '0.80.0' # https://github.com/gohugoio/hugo/issues/8340
|
# - '0.80.0' # https://github.com/gohugoio/hugo/issues/8340
|
||||||
- '0.86.1' # https://github.com/gohugoio/hugo/issues/9150
|
- '0.86.1' # https://github.com/gohugoio/hugo/issues/9150
|
||||||
|
- '0.93.3' # https://github.com/gohugoio/hugo/commit/837fdfdf45014e3d5ef3b00b01548b68a4489c5f
|
||||||
- 'latest'
|
- 'latest'
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
|
|
||||||
|
@ -57,4 +58,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build with Hugo ${{ matrix.hugo }}
|
- name: Build with Hugo ${{ matrix.hugo }}
|
||||||
working-directory: exampleSite
|
working-directory: exampleSite
|
||||||
run: HUGO_THEME="Binario" hugo --themesDir ../.. --i18n-warnings -v
|
run: |
|
||||||
|
function ver { printf "%03d%03d%03d" $(echo "$1" | tr '.' ' '); }
|
||||||
|
HUGO_VERSION=$(hugo version | grep -Eo '[0-9]\.[0-9]+\.[0-9]+')
|
||||||
|
# The option changed in 0.93.0: https://github.com/gohugoio/hugo/releases/tag/v0.93.0
|
||||||
|
I18N_OPT=$([ $(ver $HUGO_VERSION) -lt $(ver 0.93.0) ] && echo "--i18n-warnings" || echo "--printI18nWarnings")
|
||||||
|
HUGO_THEME="Binario" hugo --themesDir ../.. $I18N_OPT -v
|
||||||
|
|
Loading…
Reference in a new issue