Skip to content

Commit

Permalink
Update Jekyll workflow to use Ruby setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
d31003 committed Feb 5, 2025
1 parent 5dae1c0 commit 2608ca2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: |
gem install bundler
bundle install --path vendor/bundle --without development test
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4.1'
bundler-cache: true
cache-version: 1

- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
Expand Down

0 comments on commit 2608ca2

Please sign in to comment.