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