From bd8d660286ace337a7ad1ce004bcee5ba38e5bf8 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Mon, 12 Aug 2024 14:05:08 +0100 Subject: [PATCH] fix: run bundle install --- .github/workflows/build_site.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_site.yml b/.github/workflows/build_site.yml index 581e8402..0dc5c60d 100644 --- a/.github/workflows/build_site.yml +++ b/.github/workflows/build_site.yml @@ -41,8 +41,10 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: '3.3' - - name: Install bundler - run: gem install bundler + - name: Install bundler and dependencies + run: | + gem install bundler + bundle install - name: Build website run: bundle exec jekyll build - name: Upload artifact