From 4a30faa8ffbacc916d2909af7c8b53ae5c25f32d Mon Sep 17 00:00:00 2001 From: "Amine.Mesbahi" Date: Thu, 26 Mar 2020 11:18:30 +0100 Subject: [PATCH] Add copy_artifact script to config --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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