From f0b4d9b103e129f2ef980c8e3220888cc15198a6 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Sun, 15 Jan 2023 18:54:50 +0100 Subject: [PATCH] Build on macos only --- .github/workflows/build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0074905b9..0d14e5bbd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,10 +8,7 @@ on: jobs: build: if: github.repository_owner == 'IntellectualSites' - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] + runs-on: macos-latest steps: - name: Checkout Repository uses: actions/checkout@v3 @@ -22,5 +19,5 @@ jobs: with: distribution: temurin java-version: 17 - - name: Build on ${{ matrix.os }} + - name: Build on macos-latest run: ./gradlew clean build