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

image: ruby:2.4.2
stages:
- deploy
deploy:
stage: deploy
before_script:
- gem install jekyll
script:
- jekyll build -d public
- rsync -avz --delete --no-group ./dist/ $SERVER_USER@autonomic.zone:/var/www/autonomic.zone/html/
artifacts:
paths:
- public
only:
- master