Fix WT Compile issues and prepare auto release pipeline (#13)

* Fixup WinTest Error

* Prepare CI/CD Auto Release Pipeline

* Fix CI/CD Components not running

* CI/CD Pre-Check n nighty and produce zip for more intutive User Design

* fix Version

* App Version Update.

* More Similar Naming to old Convention
This commit is contained in:
2026-03-23 18:58:00 +01:00
committed by GitHub
parent 6b311c3907
commit 6be44bbea2
6 changed files with 343 additions and 6 deletions

28
.github/workflows/pr-compile-check.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: PR Compile Check
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
compile:
name: Compile (Java 17)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- name: Ensure mvnw is executable
run: chmod +x mvnw
- name: Compile
run: ./mvnw -B -DskipTests compile