Skip to content

Commit e432ed9

Browse files
authored
specify jekyll version to workaround docker image bug
1 parent 1515b1a commit e432ed9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/jekyll.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v2
1212

1313
# Ruby-specific steps
1414
- name: Set up Ruby 2.6
@@ -26,9 +26,9 @@ jobs:
2626
run: |
2727
npm install
2828
29-
# Jekyll / GitHub-pages specific steps
29+
# Jekyll-specific steps
3030
- name: Build the site in the jekyll/builder container
3131
run: |
3232
docker run \
3333
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
34-
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
34+
jekyll/builder:4.0 /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"

0 commit comments

Comments
 (0)