From 0a97340e9e1d6353101b0e11b14981a87f4019e7 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Thu, 25 Feb 2021 17:22:43 +0100 Subject: [PATCH] upload jar --- .github/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e1b413d..fff73ce4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,6 +4,26 @@ name: Java CI on: [push] jobs: + build-mac: + + runs-on: [ macos-latest ] + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11.0.10 + architecture: x64 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build + - uses: actions/upload-artifact@v2 + with: + name: tilesfx + path: ./build/libs/tilesfx-11.48.jar + test: runs-on: ${{ matrix.os }} strategy: