diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index dedb736..7f5f8ec 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -1,7 +1,7 @@ # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle -name: Java CI with Gradle +name: Java CI on: push: @@ -26,3 +26,8 @@ jobs: run: chmod +x gradlew - name: Build with Gradle run: ./gradlew build + - name: Upload JAR + uses: actions/upload-artifact@v2.2.4 + with: + name: Built Jar + path: build/libs/tastytoasters-1.0-SNAPSHOT.jar