Cleanup gradle setup #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and upload jar | |
on: [push, pull_request] | |
jobs: | |
build: | |
# Only run on PRs if the source branch is on someone else's repo | |
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build test --stacktrace | |
- name: Upload Legacy Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AnarchyExploitFixesLegacy | |
path: AnarchyExploitFixesLegacy/build/libs/AnarchyExploitFixes-Legacy*.jar | |
- name: Upload Folia Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AnarchyExploitFixesFolia | |
path: AnarchyExploitFixesFolia/build/libs/AnarchyExploitFixes-Folia*.jar |