updated release process to not release new packages immediately

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-11-20 14:50:10 +01:00
parent 2b00e00f18
commit ab31a2c286
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -96,7 +96,9 @@ async function main() {
const newVersions = packageVersions.filter(
({ oldVersion, newVersion }) =>
oldVersion !== newVersion && newVersion !== '<none>',
oldVersion !== newVersion &&
oldVersion !== '<none>' &&
newVersion !== '<none>',
);
if (newVersions.length === 0) {