From b3470fe45d9b2115fafc509fd330b3143ed70c05 Mon Sep 17 00:00:00 2001 From: BryceLTaylor Date: Tue, 12 Apr 2022 13:49:05 -0400 Subject: [PATCH] add built-test-deploy job and workflow to circleci --- .circleci/config.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d583465f..168594db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -57,6 +57,24 @@ jobs: <<: *build - store_test_results: path: test/results + build-test-deploy: + <<: *defaults + steps: + - checkout + - run: + <<: *setup + - run: + <<: *lint + - run: + <<: *unit + - run: + <<: *build + - store_test_results: + path: test/results + - run: + <<: *tag-setup + - run: + <<: *deploy-gh-pages workflows: build-test-no-deploy: @@ -70,3 +88,14 @@ workflows: - master - develop - /^hotfix\/.*/ + build-test-deploy: + jobs: + - build-test-deploy: + context: + - dockerhub-credentials + filters: + branches: + only: + - master + - develop + - /^hotfix\/.*/