From aa352ba7d97743b19d12c019c5588e89539d8130 Mon Sep 17 00:00:00 2001 From: Julien Ponge Date: Mon, 24 Jul 2023 16:30:31 +0200 Subject: [PATCH] build(ci): Run a build of the code base before release --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 12e2efb..f871a05 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,6 +28,8 @@ jobs: java-version: '11' distribution: 'temurin' cache: maven + - name: Run a build of the code base before release + run: ./mvnw --batch-mode --no-transfer-progress clean install - name: Set release version run: ./mvnw --batch-mode --no-transfer-progress versions:set -DnewVersion=${{ github.event.inputs.version }} - name: Commit & Push changes