From 4212e05e1c05a34ee5ba7b6445bbf126ebbe52ab Mon Sep 17 00:00:00 2001 From: ez-plugins Date: Sun, 19 Apr 2026 22:43:31 +0200 Subject: [PATCH] ci: added jitpack workflow --- .github/workflows/jitpack.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/jitpack.yml diff --git a/.github/workflows/jitpack.yml b/.github/workflows/jitpack.yml new file mode 100644 index 0000000..8a20303 --- /dev/null +++ b/.github/workflows/jitpack.yml @@ -0,0 +1,25 @@ +name: JitPack compatibility + +on: + push: + branches: [ main, master ] + pull_request: + +jobs: + jitpack-build: + name: Simulate JitPack build + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Set up Java 25 (matches jitpack.yml jdk) + uses: actions/setup-java@v5 + with: + distribution: temurin + java-version: '25' + cache: maven + + - name: Build API module (mirrors jitpack.yml install command) + run: ./mvnw --batch-mode --no-transfer-progress clean install -pl api -am -Dmaven.test.skip=true