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 5c5c04d commit 0025056Copy full SHA for 0025056
.github/workflows/build-project.yml
@@ -48,9 +48,9 @@ jobs:
48
with:
49
output_file: custom_maven_settings.xml
50
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
51
- - name: Build Native with Maven
+ - name: Build with Maven (Pull Request)
52
if: ${{ github.event_name == 'pull_request' }}
53
run: ./mvnw -s custom_maven_settings.xml -B -Pnative-image clean verify
54
- - name: Build with Maven
+ - name: Build with Maven (Push)
55
if: ${{ github.event_name == 'push' }}
56
run: ./mvnw -s custom_maven_settings.xml -B clean verify
0 commit comments