Skip to content

Commit

Permalink
upload jar
Browse files Browse the repository at this point in the history
  • Loading branch information
HanSolo committed Feb 25, 2021
1 parent 3cff61b commit 0a97340
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0a97340

Please sign in to comment.