Update sass fix to work with github-pages deprecated sass converter #218
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-image: [ 'jekyll/builder:latest', 'sylhare/jekyll:latest' ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
docker-version: ${{ matrix.docker-image }} | ||
- name: Build the site in the ${{ matrix.docker-image }} container | ||
run: | | ||
Check failure on line 23 in .github/workflows/jekyll-build.yml GitHub Actions / Jekyll BuildInvalid workflow file
|
||
docker run \ | ||
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ | ||
${{ docker-image }} /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 | ||