From 2b022e745d5747bbbe93e18fe5e5290dd9a958ac Mon Sep 17 00:00:00 2001 From: Victor Laza Date: Mon, 27 Apr 2015 18:16:17 +0300 Subject: Adding upload images part for documentation build - opnfvdocs JIRA: Adding upload images part for documentation build - opnfvdocs Change-Id: I206ef5245f6a55cceea3883d8c5a129f0530a90b Signed-off-by: Victor Laza --- jjb/opnfvdocs/build-upload-docu.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'jjb/opnfvdocs') diff --git a/jjb/opnfvdocs/build-upload-docu.sh b/jjb/opnfvdocs/build-upload-docu.sh index b7437265d..23e7838be 100644 --- a/jjb/opnfvdocs/build-upload-docu.sh +++ b/jjb/opnfvdocs/build-upload-docu.sh @@ -40,3 +40,22 @@ for file in "${{files[@]}}"; do done + +images=() + +while read -r -d ''; do + files+=("$REPLY") +done < <(find * -type f \( -iname \*.jpg -o -iname \*.png \) -print0) + +for img in "${{images[@]}}"; do + + # uploading found images + echo "uploading $img" + gs://artifacts.opnfv.org/"$project"/"$img" + gsutil setmeta -h "Content-Type:text/html" \ + -h "Cache-Control:private, max-age=0, no-transform" \ + gs://artifacts.opnfv.org/"$project"/"$img" + cat gsoutput.txt + rm -f gsoutput.txt + +done -- cgit 1.2.3-korg