Skip to content

Commit 14f7fb5

Browse files
Add test verification step before release deployment
Co-authored-by: thomasturrell <1552612+thomasturrell@users.noreply.github.com>
1 parent 79c11b2 commit 14f7fb5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@ jobs:
100100
git add .
101101
git commit -m "[maven-release-plugin] prepare release v${VERSION}"
102102
103+
- name: Verify release build
104+
run: |
105+
echo "Running tests and verification for release version"
106+
107+
# Build and test the release version
108+
./mvnw -B clean verify
109+
103110
- name: Build and deploy release
104111
run: |
105112
VERSION="${{ steps.validate_tag.outputs.version }}"

0 commit comments

Comments
 (0)