Merge branch 'fix-ci'

This commit is contained in:
deathrow 2022-12-29 22:21:41 -05:00
commit 65fec7eb3d
No known key found for this signature in database
GPG key ID: FF39D67A22069F73
2 changed files with 7 additions and 6 deletions

View file

@ -4,9 +4,10 @@ type: docker
steps: steps:
- name: build - name: build
image: ruby image: ruby:3.1.3
commands: commands:
- gem update
- gem install bundler - gem install bundler
- bundle install - bundle install
- bundle update - bundle update
- bundle exec jekyll build --trace - bundle exec jekyll build

View file

@ -1,9 +1,9 @@
# frozen_string_literal: true # frozen_string_literal: true
source "https://rubygems.org" source "https://rubygems.org"
gem 'jekyll' gem "jekyll"
gem "jekyll-theme-potato-hacker" gem "jekyll-theme-potato-hacker"
gem 'jekyll-feed' gem "jekyll-feed"
gem 'jekyll-seo-tag' gem "jekyll-seo-tag"
gem "bundler" gem "bundler"
gem "kramdown-parser-gfm" gem "kramdown-parser-gfm"
gem "webrick" gem "webrick"