Skip to content

Update jekyll-docker.yml #15

Update jekyll-docker.yml

Update jekyll-docker.yml #15

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@v2
- name: Check SCSS file
run: cat ${{ github.workspace }}/assets/main.scss
- name: Build the site
run: docker run -v ${{ github.workspace }}:/srv/jekyll jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future --trace"