From cd1761701981e7fc4ccaa55e0e0b0ec5ae595e7f Mon Sep 17 00:00:00 2001 From: Laura Date: Sun, 9 Aug 2026 16:09:09 +0200 Subject: [PATCH] Add CI build workflow --- .gitea/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..9f50265 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: '21' + cache: gradle + + - name: Build with Gradle + run: ./gradlew build --no-daemon + + - uses: actions/upload-artifact@v4 + with: + name: BuildSystem-jar + path: buildsystem-core/build/libs/*.jar