From a312a7b1402b9a5293950cc8e902e53d7e09b68f Mon Sep 17 00:00:00 2001 From: Oleksandr Shevchenko Date: Thu, 5 Feb 2026 14:13:54 +0200 Subject: [PATCH] Fix Maven command syntax in CI workflow Add missing space between 'install' and '-Dgpg.skip=true' to fix lifecycle phase error in CI builds. Signed-off-by: Oleksandr Shevchenko --- .github/workflows/ci-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index c3b1196a..a10bc1d4 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -30,7 +30,7 @@ jobs: cache: maven - name: Build, test, and run samples (Java ${{ matrix.javaVersion }} ${{ matrix.distribution }}) run: | - ./mvnw -B clean install-Dgpg.skip=true + ./mvnw -B clean install -Dgpg.skip=true - name: Upload Build Reports (Java ${{ matrix.javaVersion }} ${{ matrix.distribution }}) if: failure() uses: actions/upload-artifact@v4