From 03eb4c0c403b5a1d203727ed5a8d0fb03d2ef8b7 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 28 Jan 2020 15:46:09 +0100 Subject: [PATCH] Create gradle.yml --- .github/workflows/gradle.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 00000000..e9e6941c --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,24 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Gradle + run: ./gradlew clean build + + - name: Upload artifact + uses: actions/upload-artifact@v1.0.0 + with: + name: NaturesAura + # Directory containing files to upload + path: build/libs