diff --git a/.github/workflows/pages-deploy.yml b/.github/workflows/pages-deploy.yml index 28630b0..7017cf7 100644 --- a/.github/workflows/pages-deploy.yml +++ b/.github/workflows/pages-deploy.yml @@ -31,9 +31,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - # submodules: true - # If using the 'assets' git submodule from Chirpy Starter, uncomment above - # (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets) - name: Setup Pages id: pages @@ -45,6 +42,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: diff --git a/Gemfile b/Gemfile index 8934f4a..edbc739 100644 --- a/Gemfile +++ b/Gemfile @@ -4,6 +4,9 @@ source "https://rubygems.org" gem "jekyll-theme-chirpy", "~> 6.2", ">= 6.2.3" +# Add the csv gem to address Ruby 3.4.0's changes +gem "csv" + group :test do gem "html-proofer", "~> 4.4" end