From 5f34ae210ba164b2ce49956715d5338c5a8e3bcd Mon Sep 17 00:00:00 2001 From: Jay Dolan Date: Tue, 17 Mar 2026 19:52:57 -0400 Subject: [PATCH] Add GitHub Actions build workflow Builds with Maven + JDK 21, runs ProGuard minification via shade plugin, uploads quetoo-installer-small.jar as a workflow artifact. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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..892ab6a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,34 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + cache: maven + + - name: Build + run: mvn -B package + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: quetoo-installer-small + path: target/quetoo-installer-small.jar