Skip to content
Snippets Groups Projects
Commit aa602265 authored by Richard Perry's avatar Richard Perry
Browse files

Update .gitlab-ci.yml

parent 904a45c1
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: ruby:2.3
 
# define the environment variables
variables:
JEKYLL_ENV: production
# 'bundle' all the required gems for the project
before_script:
- bundle install
# build and deploy the site
pages:
stage: deploy
script:
- bundle install
- JEKYLL_ENV=production bundle exec jekyll build -d public
- bundle exec jekyll build -d public
artifacts:
paths:
- public
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment