From 87a5148610480bbe662a5ebbbafc83938bc2f7d7 Mon Sep 17 00:00:00 2001 From: TwistedUmbrellaX Date: Mon, 27 May 2024 15:09:24 -0400 Subject: [PATCH] Restore 10.8.4.0 as the jelly version --- validate-and-update-manifest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate-and-update-manifest.js b/validate-and-update-manifest.js index e45f937..d88b2ab 100644 --- a/validate-and-update-manifest.js +++ b/validate-and-update-manifest.js @@ -14,7 +14,7 @@ const jsonData = JSON.parse(fs.readFileSync(manifestPath, 'utf8')); const newVersion = { version: process.env.VERSION, // replace with the actual new version changelog: "- See the full changelog at [GitHub](https://github.com/jumoog/intro-skipper/blob/master/CHANGELOG.md)\n", - targetAbi: "10.9.0.0", + targetAbi: "10.8.4.0", sourceUrl: process.env.SOURCE_URL, checksum: process.env.CHECKSUM, timestamp: process.env.TIMESTAMP @@ -22,7 +22,7 @@ const newVersion = { async function updateManifest() { await validVersion(newVersion); - + // Add the new version to the manifest jsonData[0].versions.unshift(newVersion);