This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/.gitlab-ci.yml

18 lines
307 B
YAML
Raw Normal View History

2017-09-24 16:22:24 +00:00
image: ruby:2.4.2
2017-08-31 11:44:57 +00:00
2017-10-04 13:36:04 +00:00
stages:
- deploy
2017-10-13 20:56:13 +00:00
deploy:
stage: deploy
2017-10-04 13:36:04 +00:00
before_script:
- gem install jekyll
script:
2017-10-13 20:56:13 +00:00
- jekyll build -d public
2018-08-21 17:06:34 +00:00
- rsync -avz --delete --no-group ./dist/ $SERVER_USER@autonomic.zone:/var/www/autonomic.zone/html/
2017-08-31 11:44:57 +00:00
artifacts:
paths:
2017-10-13 20:56:13 +00:00
- public
2017-10-13 22:25:00 +00:00
only:
2018-08-21 17:06:34 +00:00
- master