Skip to content

Commit

Permalink
CI: fixed release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rashtao committed Jun 21, 2024
1 parent a82dc6b commit 11c3e58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ commands:
steps:
- run:
name: mvn install
command: mvn install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true
command: mvn install -Dmaven.test.skip=true -Dgpg.skip=true -Dmaven.javadoc.skip=true
test:
parameters:
working_directory:
Expand Down Expand Up @@ -94,12 +94,12 @@ commands:
steps:
- run:
name: Deploy to Apache Maven Central
command: mvn -s .circleci/maven-release-settings.xml -DskipTests deploy
command: mvn -s .circleci/maven-release-settings.xml -Dmaven.test.skip=true deploy
release:
steps:
- run:
name: Release to Apache Maven Central
command: mvn -Dmaven.test.skip=true nexus-staging:release
command: mvn -s .circleci/maven-release-settings.xml -Dmaven.test.skip=true nexus-staging:release

executors:
j17:
Expand Down

0 comments on commit 11c3e58

Please sign in to comment.