From 633ac2be01aff92190c39f35f375d482aae4767c Mon Sep 17 00:00:00 2001 From: Benson Liu Date: Sun, 1 Oct 2023 13:30:55 -0700 Subject: [PATCH] fix: added dependency installation to `pages-deploy.yml` CI currently does not install the Jekyll theme Gem. This adds this to the workflow. --- .github/workflows/pages-deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pages-deploy.yml b/.github/workflows/pages-deploy.yml index 87089c9..3e2d342 100644 --- a/.github/workflows/pages-deploy.yml +++ b/.github/workflows/pages-deploy.yml @@ -45,6 +45,9 @@ jobs: ruby-version: 3 bundler-cache: true + - name: Install dependencies + run: bundle install + - name: Build site run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}" env: