18 lines
669 B
Bash
Executable File
18 lines
669 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
bash -euo pipefail
|
|
source script/lib/blob-store.sh
|
|
|
|
bucket_name="zed-nightly-host"
|
|
version=$(./script/get-crate-version zed)+nightly."${GITHUB_RUN_NUMBER}.${GITHUB_SHA}"
|
|
|
|
for file_to_upload in ./release-artifacts/*; do
|
|
[ -f "$file_to_upload" ] || continue
|
|
upload_to_blob_store_public $bucket_name "$file_to_upload" "nightly/$(basename "$file_to_upload")"
|
|
upload_to_blob_store_public $bucket_name "$file_to_upload" "${version}/$(basename "$file_to_upload")"
|
|
rm -f "$file_to_upload"
|
|
done
|
|
|
|
echo -n ${version} > ./release-artifacts/latest-sha
|
|
upload_to_blob_store_public $bucket_name "release-artifacts/latest-sha" "nightly/latest-sha"
|