Skip to content
Snippets Groups Projects
Commit cd5d74ae authored by Gason Olivier's avatar Gason Olivier
Browse files

Add new file

parent 86be1327
No related branches found
No related tags found
No related merge requests found
Pipeline #51289 passed
# Build CollectionBuilder using Jekyll
# use Ruby image that matches the version you are using locally
image: ruby:3.1
# set to production environment build
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
# install bundler, then install from Gemfile
before_script:
- gem install bundler
- bundle install
# build and deploy site
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
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