Browse Source

Upload to nightly path and echo out some info

Mikkel Hjortshoej 5 years ago
parent
commit
1bd0e09ae1
1 changed files with 4 additions and 2 deletions
  1. 4 2
      ci/upload-create-nightly.sh

+ 4 - 2
ci/upload-create-nightly.sh

@@ -7,5 +7,7 @@ artifact=$2
 now=$(date +'%Y-%m-%d')
 filename="odin-$platform-nightly+$now.zip"
 
-7z a "output/$filename" -r "$artifact"
-b2 upload-file --noProgress "$bucket" "output/$filename" "$filename"
+echo "Creating archive $filename from $artifact and uploading to $bucket"
+
+7z a -bd "output/$filename" -r "$artifact"
+b2 upload-file --noProgress "$bucket" "output/$filename" "nightly/$filename"