From f1197e3b25a9e3639ef5c026db8d801ad815f6f7 Mon Sep 17 00:00:00 2001 From: Quentin Bolsee <quentinbolsee@hotmail.com> Date: Tue, 23 Apr 2024 00:31:43 -0400 Subject: [PATCH] fix pipeline --- .gitlab-ci.yml | 2 +- Gemfile | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 Gemfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2274f07..0ca20fc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ pages: stage: deploy script: - - bundle exec jekyll build -d public # Use `bundle exec` to ensure the command runs within Bundler's context + - jekyll build -d public # Use `bundle exec` to ensure the command runs within Bundler's context - echo "The site will be deployed to $CI_PAGES_URL" artifacts: paths: diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 3aec09b..0000000 --- a/Gemfile +++ /dev/null @@ -1,7 +0,0 @@ -source 'https://rubygems.org' - -gem "jekyll", "~> 4.3.3" # installed by `gem jekyll` -# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 - -gem "just-the-docs", "0.7.0" # pinned to the current release -# gem "just-the-docs" # always download the latest release -- GitLab