Skip to content

Onion

Onion #26

Workflow file for this run

name: Jekyll site CI
on:
pull_request:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check Spelling
uses: check-spelling/check-spelling@v0.0.22
with:
extra_dictionaries:
cspell:software-terms/dict/softwareTerms.txt
cspell:aws/aws.txt
cspell:php/dict/php.txt
cspell:node/dict/node.txt
cspell:npm/dict/npm.txt
cspell:html/dict/html.txt
cspell:k8s/dict/k8s.txt
cspell:golang/dict/go.txt
cspell:css/dict/css.txt
cspell:fullstack/dict/fullstack.txt
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: _site # The folder the action should deploy.