Update sass fix to work with github-pages deprecated sass converter #220
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Jekyll Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Do not change as jeksll/builder id used by GitHub pages (for compatibility) | |
docker-jekyll: [ 'jekyll/builder:latest', 'sylhare/jekyll:latest' ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
docker-jekyll: ${{ matrix.docker-jekyll }} | |
- name: Build the site in the ${{ matrix.docker-image }} container | |
run: | | |
docker run \ | |
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ | |
${{ matrix.docker-jekyll }} /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future" | |
- name: Install packages | |
continue-on-error: true | |
run: | | |
docker pull sylhare/type-on-strap | |
docker pull sylhare/jekyll | |