File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed
Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -117,4 +117,33 @@ jobs:
117117 --provenance=false \
118118 --build-arg TAG=02 \
119119 --file Dockerfile-02 \
120- --tag=quay.io/microcks/contract-testing-demo-async:02 .
120+ --tag=quay.io/microcks/contract-testing-demo-async:02 .
121+
122+ build-package-shift-left-demo-sb :
123+ runs-on : ubuntu-latest
124+ environment : Build
125+ steps :
126+ # Checkout repository content
127+ - name : Checkout
128+ uses : actions/checkout@v3
129+
130+ - name : Filter shift-left-demo-sb
131+ uses : dorny/paths-filter@v2
132+ id : changes
133+ with :
134+ filters : |
135+ shift-left-demo-sb:
136+ - 'shift-left-demo/spring-boot-order-service-devtools/**'
137+
138+ - name : Set up JDK 17 for x64
139+ uses : actions/setup-java@v3
140+ with :
141+ java-version : ' 17'
142+ distribution : ' temurin'
143+ architecture : x64
144+ cache : maven
145+
146+ - name : Build Java components
147+ run : |
148+ cd spring-boot-order-service-devtools
149+ mvn -B clean package
You can’t perform that action at this time.
0 commit comments