devroom.io/.gitlab-ci.yml

28 lines
655 B
YAML
Raw Normal View History

2017-03-16 14:10:09 +00:00
image: ariejan/dockerized-hugo
2015-12-04 14:09:01 +00:00
2017-03-16 14:35:25 +00:00
stages:
- build
- deploy
build:
stage: build
2015-12-04 14:09:01 +00:00
script:
2015-12-04 14:34:29 +00:00
- hugo
2017-03-16 14:15:01 +00:00
- yui-compressor public/css/outerspace.css -o public/css/outerspace-min.css
2017-03-16 14:14:10 +00:00
- cp public/css/outerspace-min.css public/css/outerspace.css
2017-03-16 14:35:25 +00:00
deploy_prod:
stage: deploy
script:
- aws s3 sync public/ s3://$AWS_BUCKET
artifacts:
paths:
- public
environment:
name: production
url: https://www.devroom.io
only:
- master
2017-03-16 14:10:09 +00:00
#- rsync -az4 --stats --delete-after public/* -e "ssh -i ~/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" ariejan@mail.devroom.io:/home/ariejan/www/ariejan.net/