Remove the 'upload' remote after the upload

This commit is contained in:
Dmitry Vedenko 2023-02-13 16:09:07 +03:00
parent 2332f95f78
commit ba0ce145f1
No known key found for this signature in database
GPG Key ID: F4C37A6204F983A2
3 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -70,6 +70,7 @@ async function uploadBinaries() {
await helpers.execWithLog(`conan remote add audacity-binaries-upload ${remote} true --force`);
} finally {
await helpers.execWithLog(`conan upload "*" -r audacity-binaries-upload -c --all`);
await helpers.execWithLog(`conan remote remove audacity-binaries-upload`);
}
}
}