blog/.gitlab-ci.yml

24 lines
395 B
YAML
Raw Normal View History

2016-08-21 23:50:41 -04:00
stages:
- compile
- deploy
compile:
stage: compile
before_script:
- git submodule update --init
script: hugo -d /var/www/html/
artifacts:
paths:
- public
only:
- master
#deploy to dreamhost:
# stage: deploy
# script: rsync -e "/usr/bin/ssh" -rv public/ anthonylavado@clam.dreamhost.com:blog.anthonylavado.com
# environment: production
# only:
# - master