From be1828cc8bc94bc55eea71f2845e9ae7ca28aa7f Mon Sep 17 00:00:00 2001 From: AlexBob Date: Mon, 16 Dec 2024 22:20:57 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(`gradle-build.yml`):=20Add=20s?= =?UTF-8?q?upport=20for=20multi-platform=20builds=20in=20GitHub=20Actions?= =?UTF-8?q?=20workflow.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index f5b61fc1..b7139286 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -16,7 +16,11 @@ env: DOCKER_REGISTRY: alexbob jobs: boot-build-image: - runs-on: ubuntu-latest + name: Boot build image on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] permissions: contents: read packages: write