From 4d769f11aace2ca5f5e2dadd062a6e8c254e867a Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Wed, 8 Jun 2022 15:58:57 -0500 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9c020be2..fed4376f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,16 +11,20 @@ orbs: workflows: main: jobs: - ## Job (based on maven orb) to test the codebase. Should run for all branches. + ################################################################################## + ## Job (based on maven orb) to test the codebase. Should run for all branches. ## + ################################################################################## - maven/test: name: run_tests executor: java17 - ## Job (based on maven orb) to do a mvn deploy to publish jar to github qqq-maven-registry + ############################################################################################## + ## Job (based on maven orb) to do a mvn deploy to publish jar to github qqq-maven-registry. ## + ############################################################################################## - maven/test: name: deploy_to_github executor: java17 - command: 'deploy:deploy' + command: 'deploy -DskipTests' ## tests were previously ran, so okay to skip them here, settings_file: .circleci/mvn-settings.xml context: - Production