From b1690f19cca10437e2f99179fcd6f8e8e566b938 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Mon, 25 Sep 2023 13:54:32 +0200 Subject: [PATCH] [IMP] tools: add extra information in release script --- tools/release.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/release.js b/tools/release.js index 0ec4bb2c..c17a6a84 100644 --- a/tools/release.js +++ b/tools/release.js @@ -31,6 +31,10 @@ async function startRelease() { log(`*** Owl release script ***`); log(`Current Version: ${package.version}`); + log(`Warning: this script will push to the master branch!`); + log(`Make sure that github is configured to allow it:`); + log(` settings => branches => edit master => uncheck Do not allow bypassing the above settings`); + log(` (and probably a good idea to readd the protection after)`) const STEPS = 11; let step = 1;