Skip to content

Commit

Permalink
Create jekyll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chenditc authored Apr 13, 2022
1 parent 61c4c16 commit 4f70500
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Jekyll site CI

on:
push:
branches: [ gh-pages ]
pull_request:
branches: [ gh-pages ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- 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"

0 comments on commit 4f70500

Please sign in to comment.