diff --git a/dist/index.mjs b/dist/index.mjs index 6d80c57..0d2d897 100644 --- a/dist/index.mjs +++ b/dist/index.mjs @@ -88972,7 +88972,7 @@ async function main() { try { notice2(); const config = await Config.load(); - const { latest, previous, newVersionReleased } = ReleaseData.use(); + const { latest, previous } = ReleaseData.use(); const profile = __using(_stack, new Profile(config.version, config), true); const cache = __using(_stack, CacheService.setup({ TEXDIR: profile.TEXDIR, @@ -88997,7 +88997,7 @@ async function main() { const tlmgr = Tlmgr.setup(profile); await tlmgr.path.add(); if (cache.restored) { - if (profile.version >= latest.version || profile.version === previous.version && newVersionReleased()) { + if (profile.version >= previous.version) { await import_core2.group( profile.version >= latest.version ? "Updating tlmgr" : "Checking the package repository status", async () => { diff --git a/package-lock.json b/package-lock.json index 96b2b99..f31e5c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-texlive-action", - "version": "3.2.0", + "version": "3.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "setup-texlive-action", - "version": "3.2.0", + "version": "3.2.1", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index 412e2c2..2442fc3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "setup-texlive-action", "private": true, - "version": "3.2.0", + "version": "3.2.1", "description": "A GitHub Action to set up TeX Live", "scripts": { "build": "node scripts/build.mjs",