Harden release workflow validation and retries

This commit is contained in:
vorotamoroz
2026-07-16 19:23:29 +00:00
parent e31e761c5a
commit e114f66fb2
7 changed files with 164 additions and 44 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { readFileSync, writeFileSync } from "fs";
import { readFileSync, writeFileSync, writeSync } from "fs";
const updatesPath = "updates.md";
@@ -8,7 +8,7 @@ const updatesPath = "updates.md";
// allowed.
function fail(message) {
console.error(message);
writeSync(process.stderr.fd, `${message}\n`);
process.exit(1);
}