Add copy_artifact script to config
This commit is contained in:
parent
b63d0c6826
commit
4a30faa8ff
|
@ -252,6 +252,18 @@ jobs:
|
||||||
publish_tag:
|
publish_tag:
|
||||||
<<: *publish
|
<<: *publish
|
||||||
|
|
||||||
|
copy_artifact_s3:
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.6.4
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- attach_workspace:
|
||||||
|
at: .
|
||||||
|
- run:
|
||||||
|
command: |
|
||||||
|
sudo pip install boto3
|
||||||
|
python .circleci/copy_artifact_s3.py
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build_test_deploy:
|
build_test_deploy:
|
||||||
|
@ -341,6 +353,10 @@ workflows:
|
||||||
tags:
|
tags:
|
||||||
only: /.*/
|
only: /.*/
|
||||||
|
|
||||||
|
- copy_artifact_s3:
|
||||||
|
requires:
|
||||||
|
- build
|
||||||
|
|
||||||
- check:
|
- check:
|
||||||
requires:
|
requires:
|
||||||
- build
|
- build
|
||||||
|
|
Loading…
Reference in New Issue