diff --git a/.circleci/config.yml b/.circleci/config.yml index 6679cccbbc..cdce5c73e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -252,6 +252,18 @@ jobs: publish_tag: <<: *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: version: 2 build_test_deploy: @@ -341,6 +353,10 @@ workflows: tags: only: /.*/ + - copy_artifact_s3: + requires: + - build + - check: requires: - build