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

14 lines
212 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-08-31 11:57:04 +00:00
pages:
2017-09-22 09:46:39 +00:00
stage: build
script:
- gem install jekyll
- jekyll build -d public
2017-09-24 16:24:27 +00:00
- gem build autonomic.gemspec
2017-08-31 11:44:57 +00:00
artifacts:
paths:
2017-08-31 11:57:04 +00:00
- public
2017-09-24 16:24:27 +00:00
- "autonomic-*.gem"
2017-08-31 11:44:57 +00:00
only:
2017-09-22 09:46:39 +00:00
- master