Bump rexml from 3.3.6 to 3.3.9 in /.github/workflows/ruby-2.7.4 #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
image: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# The jekyll/builder is used by GitHub pages | |
docker-image: [ 'jekyll/builder', 'sylhare/jekyll' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build with Docker | |
continue-on-error: true | |
run: | | |
cd assets && docker build . | |
- name: Build the site in the container | |
run: | | |
docker run \ | |
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ | |
${{ matrix.docker-image }}:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future" | |
- name: Pull docker images | |
continue-on-error: true | |
run: | | |
docker pull sylhare/type-on-strap | |
docker pull sylhare/jekyll |