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

image: ruby:2.4.2
stages:
- build
- deploy
build:
stage: build
before_script:
- gem install jekyll
script:
- jekyll build -d public
artifacts:
paths:
- public
deploy:
stage: deploy
before_script:
- gem install jekyll
script:
- jekyll build -d public
- ./bin/deploy
artifacts:
paths:
- public
only:
- master
- tags