28 lines
533 B
YAML
28 lines
533 B
YAML
image: debian
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
before_script:
|
|
- apt install wget
|
|
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.114.0/hugo_extended_0.114.0_linux-amd64.deb
|
|
- dpkg -i hugo.deb
|
|
- curl https://get.volta.sh | bash
|
|
- npm install
|
|
|
|
test:
|
|
script:
|
|
- hugo
|
|
except:
|
|
variables:
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
pages:
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
variables:
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|