diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f347507..47ae6cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,15 @@ name: CI jobs: build-image: name: Build and push image - runs-on: ubuntu-latest strategy: fail-fast: false matrix: - platform: - - linux/amd64 - - linux/arm64 + include: + - os: ubuntu-latest + platform: linux/amd64 + - os: macos-latest + platform: linux/arm64 + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4