Been a few years so took me a little bit to get it back up and running locally so figured I'd document the requirements here.
-
Download and install a Ruby+Devkit version from RubyInstaller Downloads.
-
Run the ridk install step on the last stage of the installation wizard.
-
From the options choose MSYS2 and MINGW development tool chain.
-
Install Jekyll and Bundler using gem install jekyll bundler
gem install jekyll bundler
gem install rake
gem install tzinfo-data
bundle add webrick
bundle install
bundle exec jekyll serve
Remove bundle config and gems:
rm -r .bundle
rm -r vendor
Install gems with bundle:
bundle install
The action in github actions should handle everything once it's pushed up.