We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db20d5a commit da04affCopy full SHA for da04aff
.github/workflows/maven-build-example.yml
@@ -29,9 +29,9 @@ jobs:
29
key: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}
30
restore-keys: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}
31
32
- - name: Build
+ - name: Install library
33
run: mvn -B -ntp install
34
35
- - name: Test and package
36
- run: mvn -B -ntp -pl example -am package
37
-
+ - name: Build example project
+ working-directory: ./example
+ run: mvn -B -ntp package
0 commit comments