[FIX] release script was using a hardcoded value for notes

instead of the value that was actually provided by the user
This commit is contained in:
Géry Debongnie
2022-03-01 15:45:46 +01:00
committed by Samuel Degueldre
parent bb373e6a7a
commit 8a472231cf
+1 -1
View File
@@ -106,7 +106,7 @@ async function startRelease() {
// ---------------------------------------------------------------------------
log(`Step 7/${STEPS}: Creating the release...`);
const relaseResult = await execCommand(`gh release create v${next} dist/*.js ${draft} -F release-notes.md`);
const relaseResult = await execCommand(`gh release create v${next} dist/*.js ${draft} -F ${REL_NOTES_FILE}`);
if (relaseResult !== 0) {
logError("github release failed. Aborting.");
return;