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