Skip to content

Bump docker/setup-qemu-action from 3 to 4 #54

Bump docker/setup-qemu-action from 3 to 4

Bump docker/setup-qemu-action from 3 to 4 #54

Workflow file for this run

name: Build
on:
pull_request:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
target:
- jekyll
- pages
arch:
- amd64
- arm64
steps:
- uses: actions/checkout@v7
- uses: docker/setup-qemu-action@v4
- uses: docker/setup-buildx-action@v4
- name: Build
run: |
image="jekyll/jekyll:latest"
[ "${{ matrix.target }}" = "pages" ] && image="jekyll/jekyll:pages"
docker buildx bake "${{ matrix.target }}" --load \
--set "${{ matrix.target }}.platform=linux/${{ matrix.arch }}" \
--set "${{ matrix.target }}.tags=$image"
- run: script/test "${{ matrix.target }}" "${{ matrix.arch }}"