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 08bbc7f commit f9764c2Copy full SHA for f9764c2
.github/workflows/maven-v1.yml
@@ -41,7 +41,7 @@ jobs:
41
echo "POM VERSION" ${MY_POM_VERSION}
42
if [[ $MY_POM_VERSION =~ ^.*SNAPSHOT$ ]];
43
then
44
- mvn --no-transfer-progress -B clean deploy
+ mvn --no-transfer-progress -B clean deploy -Dsurefire.forkCount=4 -DargLine="-XX:-OmitStackTraceInFastThrow" -Dsurefire.useFile=false
45
else
46
echo "not deploying release: " ${MY_POM_VERSION}
47
fi
.github/workflows/release-v1.yml
@@ -67,6 +67,7 @@ jobs:
67
nexus_username: ${{ secrets.OSSRH_USERNAME }}
68
nexus_password: ${{ secrets.OSSRH_TOKEN }}
69
maven_profiles: "release"
70
+ maven_args: "-DskipTests"
71
- name: Run post release script
72
id: postRelease
73
if: env.RELEASE_OK == 'yes'
0 commit comments