Skip to content

Update jekyll-docker.yml #10

Update jekyll-docker.yml

Update jekyll-docker.yml #10

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: apt-get update
run: sudo apt-get update
- name: Install dependencies
run: sudo apt-get -y install ruby-full build-essential zlib1g-dev
- name: Install bundler
continue-on-error: true
run: sudo gem install --default bundler:2.1.4 && sudo gem update --system
- name: Remove Gemfile.lock
run: sudo rm -rf Gemfile.lock
- name: Update bundle
continue-on-error: true
run: sudo bundle _2.1.4_ update
- name: install jekyll
run: sudo gem install jekyll
- name: Execute jekyll build
run: sudo jekyll build