Merge pull request #1950 from BryceLTaylor/circleci-deploy

add built-test-deploy job and workflow to circleci
This commit is contained in:
Bryce Taylor 2022-04-12 14:08:33 -04:00 committed by GitHub
commit cf5da8ecc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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\/.*/