From 1058f7719e75afe5a95d611a27713209de8084aa Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Tue, 25 Mar 2025 21:24:45 -0700 Subject: [PATCH] Add steps for boot JAR and WAR creation --- .github/workflows/bld.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index cfed82f..944b4a9 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -32,6 +32,14 @@ jobs: working-directory: examples run: ./bld compile test + - name: Compile and create the JAR [examples] + working-directory: examples + run: ./bld compile bootjar + + - name: Compile and create the WAR [examples] + working-directory: examples + run: ./bld compile bootwar + - name: Download dependencies run: ./bld download