diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3875420 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +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 +