mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-10 05:28:19 -05:00
build: create asset should still try to add asset
This commit is contained in:
@@ -93,16 +93,12 @@ async function main(): Promise<void> {
|
||||
const blobExists = await doesAssetExist(blobService, quality, blobName);
|
||||
|
||||
if (blobExists) {
|
||||
console.log(`Blob ${quality}, ${blobName} already exists, not publishing again.`);
|
||||
return;
|
||||
console.log(`Blob ${quality}, ${blobName} already exists, not uploading again.`);
|
||||
} else {
|
||||
await uploadBlob(blobService, quality, blobName, filePath, fileName);
|
||||
console.log('Blobs successfully uploaded.');
|
||||
}
|
||||
|
||||
console.log('Uploading blobs to Azure storage...');
|
||||
|
||||
await uploadBlob(blobService, quality, blobName, filePath, fileName);
|
||||
|
||||
console.log('Blobs successfully uploaded.');
|
||||
|
||||
const asset: Asset = {
|
||||
platform,
|
||||
type,
|
||||
|
||||
Reference in New Issue
Block a user