15 lines
240 B
YAML
15 lines
240 B
YAML
|
stages:
|
||
|
- compile
|
||
|
|
||
|
compile:
|
||
|
stage: compile
|
||
|
before_script:
|
||
|
- git submodule update --init
|
||
|
script: hugo --cleanDestinationDir=true -d /srv/runner/live/raidisnotabackup.com
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|
||
|
only:
|
||
|
- master
|
||
|
|