X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fpharos%2Fbuild-upload-docu.sh;h=36e0400ae18ff5f7211088556a84e6ffb781931d;hb=fb331665c5b85f6ea3258fe4c9f3e287b25ed41b;hp=caf1021190f00dce13707c3d620d0a9af224cd8d;hpb=7582497a68eeee1149e38bc306b12655cd092128;p=releng.git diff --git a/jjb/pharos/build-upload-docu.sh b/jjb/pharos/build-upload-docu.sh index caf102119..36e0400ae 100644 --- a/jjb/pharos/build-upload-docu.sh +++ b/jjb/pharos/build-upload-docu.sh @@ -40,3 +40,22 @@ for file in "${{files[@]}}"; do done +images=() +while read -r -d ''; do + images+=("$REPLY") +done < <(find * -type f \( -iname \*.jpg -o -iname \*.png \) -print0) + +for img in "${{images[@]}}"; do + + # uploading found images + echo "uploading $img" + cat "$img" | gsutil cp -L gsoutput.txt - \ + gs://artifacts.opnfv.org/"$project"/"$img" + gsutil setmeta -h "Content-Type:image/jpeg" \ + -h "Cache-Control:private, max-age=0, no-transform" \ + gs://artifacts.opnfv.org/"$project"/"$img" + cat gsoutput.txt + rm -f gsoutput.txt + +done +