diff options
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/upload-create-nightly.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/upload-create-nightly.sh b/ci/upload-create-nightly.sh index 5f702f9c2..763123646 100644 --- a/ci/upload-create-nightly.sh +++ b/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"
\ No newline at end of file +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"
\ No newline at end of file |