From 8bfb8a95fa384869c30d7c5b1a56b320c7f539a6 Mon Sep 17 00:00:00 2001 From: Connor Young Date: Thu, 23 Jan 2025 21:03:33 +1100 Subject: [PATCH] Hopefully fixing the deploy action --- .github/workflows/pages-deploy.yml | 6 +++--- Gemfile | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) 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