mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 21:42:30 -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
|
||||
- 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\/.*/
|
||||
|
|
Loading…
Reference in a new issue