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

30 lines
387 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:
2017-10-13 20:56:13 +00:00
- build
2017-10-04 13:36:04 +00:00
- deploy
2017-10-13 20:56:13 +00:00
build:
stage: build
before_script:
- gem install jekyll
script:
- jekyll build -d public
artifacts:
paths:
- public
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
- ./bin/deploy
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:
- master
- tags