From ffeb3ce3384a9c3146858f812510fa0bdab41bbc Mon Sep 17 00:00:00 2001 From: Janis Date: Wed, 22 Apr 2026 09:50:10 +0200 Subject: [PATCH] fix: disable jar packaging in native image build --- .github/workflows/native-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/native-image.yml b/.github/workflows/native-image.yml index bf27e82..9ace760 100644 --- a/.github/workflows/native-image.yml +++ b/.github/workflows/native-image.yml @@ -54,7 +54,7 @@ jobs: restore-keys: gradle-${{ runner.os }}- - name: Build native binary - run: ./gradlew :modules:${{ matrix.module }}:build -Dquarkus.native.enabled=true --no-daemon + run: ./gradlew :modules:${{ matrix.module }}:build -Dquarkus.native.enabled=true -Dquarkus.package.jar.enabled=false --no-daemon - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3