We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f06f9c + 8a1cff5 commit 7105fbcCopy full SHA for 7105fbc
1 file changed
.github/workflows/jekyll.yml
@@ -0,0 +1,16 @@
1
+name: Jekyll site CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Build the site in the jekyll/builder container
13
+ run: |
14
+ docker run \
15
+ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
16
+ jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
0 commit comments