Skip to content

Commit

Permalink
Hopefully fixing the deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorY97 committed Jan 23, 2025
1 parent dcab904 commit 8bfb8a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8bfb8a9

Please sign in to comment.