Skip to content

Commit

Permalink
Merge pull request #493 from sylhare/ruby-improvement
Browse files Browse the repository at this point in the history
Add dynamic dependency patch
  • Loading branch information
sylhare authored Mar 9, 2025
2 parents 1a78df9 + 8d6f278 commit 3bc6f28
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# The jekyll/builder is used by GitHub pages
docker-image: [ 'jekyll/builder', 'sylhare/jekyll' ]
# The jekyll/builder was replaced by the action jekyll-build-pages
docker-image: [ 'sylhare/jekyll' ]

steps:
- uses: actions/checkout@v4
- name: Build
uses: actions/jekyll-build-pages@v1
with:
destination: "./output"
- name: Build with Docker
continue-on-error: true
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.2', '3.3', '3.4' ]
ruby: [ '3.0', '3.1', '3.2', '3.3', '3.4' ]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
source "https://rubygems.org"
gemspec

# Should be included in Jekyll but depending on the version Jekyll and Ruby version, it may not be included
# gem 'webrick'
# gem 'kramdown-parser-gfm'
gem 'webrick'
gem 'kramdown-parser-gfm'

# For github pages compatibility
# gem 'github-pages', group: :jekyll_plugins
gemspec

0 comments on commit 3bc6f28

Please sign in to comment.