From 79cf376ed233d4debc1145f3d2aa63b121d865f2 Mon Sep 17 00:00:00 2001 From: Luc Sarzyniec Date: Sat, 8 Jan 2022 14:50:00 +0100 Subject: [PATCH] Fix: GitLab CI pipeline fails because Bundle dependencies are not installed --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 722e38a9..65720180 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,8 +7,16 @@ update-lists: - git config user.email "gitlab@example.com" - git checkout -b $MAIN_BRANCH || true script: + # install required dependencies + - bundle install + + # fetch the last version of the blacklists - scripts/update-lists + + # update table in README file - bundle exec scripts/generate-readme < README.md.erb > README.md + + # push updates to git repository - scripts/sync-git only: - web -- 2.47.2