File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -42,26 +42,20 @@ jobs:
42
42
43
43
- name : Regular build
44
44
run : |
45
- mvn -B -U clean verify
46
- env :
47
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45
+ ./mvnw -B -U clean verify
48
46
49
47
- name : Sonar analysis
50
48
if : matrix.sonar-enabled
51
49
run : | # no clean
52
- mvn -B sonar:sonar \
50
+ ./mvnw -B sonar:sonar \
53
51
-Dsonar.projectKey=AxonFramework_extension-kafka \
54
52
-Dsonar.organization=axonframework \
55
53
-Dsonar.host.url=https://sonarcloud.io \
56
54
-Dsonar.login=${{ secrets.SONAR_TOKEN }}
57
- env :
58
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59
55
60
56
- name : Run integration tests
61
57
run : | # no clean
62
- mvn -B -Pitest
63
- env :
64
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
58
+ ./mvnw -B -Pitest
65
59
66
60
- name : Deploy to Sonatype
67
61
if : success()
Original file line number Diff line number Diff line change 37
37
38
38
- name : Run regular build
39
39
run : |
40
- mvn -B -U clean verify
40
+ ./mvnw -B -U clean verify
41
41
42
42
- name : Run integration tests
43
43
run : | # no clean
44
- mvn -B -Pitest
44
+ ./mvnw -B -Pitest
You can’t perform that action at this time.
0 commit comments