We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9644a8d commit 68344d8Copy full SHA for 68344d8
1 file changed
.github/workflows/build_deploy.yml
@@ -39,7 +39,7 @@ jobs:
39
java-version: '11'
40
distribution: 'temurin'
41
- name: Build with Maven
42
- run: ./mvnw -B clean verify checkstyle:checkstyle jacoco:report -DcommonConfig.jarSign.skip=true
+ run: ./mvnw -B clean verify -DcommonConfig.jarSign.skip=true
43
- name: Analyze with SonaQube
44
env:
45
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
@@ -77,7 +77,7 @@ jobs:
77
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
78
- name: Publish package
79
run: |
80
- ./mvnw -B verify nexus-staging:deploy -P deploy && \
+ ./mvnw -B verify nexus-staging:deploy -P deploy -DskipTests && \
81
./mvnw -B nexus-staging:release -P deploy
82
83
OPENSOURCE_PROJECTS_KS_PW: ${{ secrets.KEYSTORE_PASSWORD }}
0 commit comments