From d1ec71d0caf96f081c57c5e4802f3811189d8646 Mon Sep 17 00:00:00 2001 From: booky10 Date: Sat, 22 Jul 2023 02:39:46 +0200 Subject: [PATCH] Add github building workflow --- .github/workflows/build.yml | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..28e8a4b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +name: Build +on: [ push, pull_request ] + +jobs: + build: + runs-on: ubuntu-22.04 + if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')" + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Validate gradle wrapper + uses: gradle/wrapper-validation-action@v1 + + - name: Setup java 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: temurin + cache: gradle + + - name: Set git identity + run: | + git config --global user.email "no-reply@github.com" + git config --global user.name "Github Actions" + + - name: Apply patches + run: ./gradlew applyPatches -Dpaperweight.debug=true --no-daemon + + - name: Build reobfuscated paperclip jar + run: ./gradlew createReobfPaperclipJar -Dpaperweight.debug=true --no-daemon + + - name: Upload reobfuscated paperclip jar + uses: actions/upload-artifact@v3 + with: + name: CloudPlane-Artifacts + path: build/libs/CloudPlane-paperclip-* + if-no-files-found: error