Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
workflow
  • Loading branch information
UbuntuEvangelist authored Dec 25, 2019
1 parent cf80fe7 commit 016e3f9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Jekyll site CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- 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 777 /srv/jekyll && jekyll build --future"

0 comments on commit 016e3f9

Please sign in to comment.