We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd577f commit 5714ffcCopy full SHA for 5714ffc
.github/workflows/ci.yml
@@ -5,11 +5,11 @@ jobs:
5
name: Build Jekyll
6
runs-on: ubuntu-latest
7
steps:
8
- - uses: actions/checkout@v3
9
- - name: Build the site in the jekyll/builder container
10
- run: |
11
- export JEKYLL_VERSION=3.8
12
- docker run \
13
- -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
14
- -e PAGES_REPO_NWO=${{ github.repository }} \
15
- jekyll/builder:$JEKYLL_VERSION /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
+ - uses: actions/checkout@v4
+ - uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '3.3'
+ - name: Install dependencies
+ run: bundle install && bundle exec appraisal install
+ - name: Build site
+ run: bundle exec appraisal jekyll build --future
0 commit comments