From 2df2396b04152b8b997a259f2fd06ea7a3b008ee Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Fri, 7 Jun 2024 14:32:50 +0200 Subject: [PATCH] Fix build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4aa71fc2d6..54d7de3b8f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,11 +36,11 @@ jobs: - name: Maven verify if: ${{ !matrix.runner.deploy-snapshots }} - run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots -Pfull verify + run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots verify - name: Maven deploy if: ${{ matrix.runner.deploy-snapshots }} - run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots -DaltDeploymentRepository=local::file:./maven-repo/ deploy + run: ./mvnw --no-transfer-progress --batch-mode --update-snapshots -DaltDeploymentRepository=local::file:./maven-repo/ -Pfull deploy - name: Deploy to repo.spring.io if: ${{ matrix.runner.deploy-snapshots }}