use node package and hugo install from apt?
This commit is contained in:
parent
d749e741d5
commit
f4071f983a
1 changed files with 10 additions and 3 deletions
|
@ -1,14 +1,19 @@
|
|||
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
||||
image: node:latest
|
||||
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: recursive
|
||||
|
||||
build:
|
||||
image: node:latest
|
||||
install:
|
||||
stage: install
|
||||
script:
|
||||
- npm install
|
||||
artifacts:
|
||||
paths:
|
||||
- node_modules/
|
||||
|
||||
test:
|
||||
before_script:
|
||||
- apt-get update -qq && apt-get install -y -qq hugo
|
||||
script:
|
||||
- hugo
|
||||
except:
|
||||
|
@ -16,6 +21,8 @@ test:
|
|||
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||
|
||||
pages:
|
||||
before_script:
|
||||
- apt-get update -qq && apt-get install -y -qq hugo
|
||||
script:
|
||||
- hugo
|
||||
artifacts:
|
||||
|
|
Reference in a new issue