update targetAbi to latest jellyfin version

This commit is contained in:
Kilian von Pflugk 2024-05-27 18:24:05 +02:00 committed by GitHub
parent 03155befe4
commit 32f1da6561
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ const jsonData = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
const newVersion = { const newVersion = {
version: process.env.VERSION, // replace with the actual new version 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", 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.9.3.0",
sourceUrl: process.env.SOURCE_URL, sourceUrl: process.env.SOURCE_URL,
checksum: process.env.CHECKSUM, checksum: process.env.CHECKSUM,
timestamp: process.env.TIMESTAMP timestamp: process.env.TIMESTAMP
@ -107,4 +107,4 @@ async function run() {
await updateManifest(); await updateManifest();
} }
run(); run();