Loading .gitlab-ci.yml +13 −0 Original line number Diff line number Diff line default: image: ruby:3.2 deploy-pages: script: - gem install bundler - bundle install - bundle exec jekyll build -d public pages: true # specifies that this is a Pages job artifacts: paths: - public Loading
.gitlab-ci.yml +13 −0 Original line number Diff line number Diff line default: image: ruby:3.2 deploy-pages: script: - gem install bundler - bundle install - bundle exec jekyll build -d public pages: true # specifies that this is a Pages job artifacts: paths: - public