Skip to content

nick post

nick post #82

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"