Skip to content

Updated gemfile

Updated gemfile #138

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Ruby 3.1.1
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.1
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll \
-v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:4.2.0 /bin/bash -c "
chmod -R 777 /srv/jekyll && \
gem install bundler:2.3.24 && \
jekyll build --future
"