From 9d649b10cb4fecdaa5e7ed70f4ba0b660cf650d1 Mon Sep 17 00:00:00 2001 From: onomanapeia Date: Sun, 15 Dec 2024 21:53:52 -0600 Subject: [PATCH] build pls? --- .gitlab-ci.yml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29a7fdd..1e368c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,17 +1,12 @@ -image: ruby:latest +default: + image: ruby:3.2 -variables: - JEKYLL_ENV: production - LC_ALL: C.UTF-8 - -before_script: - - gem install bundler - - bundle install - -pages: - stage: deploy +deploy-pages: script: - - bundle exec jekyll build -d public + - gem install bundler + - bundle install + - bundle exec jekyll build -d public + pages: true # specifies that this is a Pages job artifacts: paths: - - public + - public \ No newline at end of file