build: cleanup release scripts, separate cli entrypoints from logic (#44083)

build: cleanup release scripts, separate cli entrypoints from logic (#44058)

* build: cleanup release scripts, separate cli entrypoints from logic

* build: use repo/org constants
This commit is contained in:
Samuel Attard 2024-10-01 14:08:20 -07:00 committed by GitHub
parent 075a297347
commit 01e64d3932
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 408 additions and 299 deletions

View file

@ -0,0 +1,6 @@
import { makeRelease } from '../release';
makeRelease().catch((err) => {
console.error('Error occurred while making release:', err);
process.exit(1);
});