From 3ed15ffefe26a7085d7c26a5f0669e7f437006c0 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Tue, 7 Jun 2022 13:59:30 +0200 Subject: [PATCH] add mac os runner --- .github/workflows/package.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package.yaml b/.github/workflows/package.yaml index 79aacb3c..4b5582cf 100644 --- a/.github/workflows/package.yaml +++ b/.github/workflows/package.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-latest] + os: [windows-latest, ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v3 with: @@ -31,7 +31,7 @@ jobs: if: ${{ runner.os == 'Windows' }} run: ./gradlew packageZipDistribution - name: Package tar distribution - if: ${{ runner.os == 'Linux' }} + if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} run: ./gradlew packageTarDistribution - name: Upload Artifacts uses: actions/upload-artifact@v2