mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-10 22:47:03 -05:00
Merge pull request #1950 from BryceLTaylor/circleci-deploy
add built-test-deploy job and workflow to circleci
This commit is contained in:
commit
cf5da8ecc8
1 changed files with 29 additions and 0 deletions
|
@ -57,6 +57,24 @@ jobs:
|
||||||
<<: *build
|
<<: *build
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: 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:
|
workflows:
|
||||||
build-test-no-deploy:
|
build-test-no-deploy:
|
||||||
|
@ -70,3 +88,14 @@ workflows:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
- /^hotfix\/.*/
|
- /^hotfix\/.*/
|
||||||
|
build-test-deploy:
|
||||||
|
jobs:
|
||||||
|
- build-test-deploy:
|
||||||
|
context:
|
||||||
|
- dockerhub-credentials
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
- /^hotfix\/.*/
|
||||||
|
|
Loading…
Reference in a new issue