diff --git a/scripts/publish-gitea.mjs b/scripts/publish-gitea.mjs index be858a6..417fb3b 100644 --- a/scripts/publish-gitea.mjs +++ b/scripts/publish-gitea.mjs @@ -123,7 +123,7 @@ async function main() { const files = (await readdir(DIST)).filter(isUpdateArtifact) if (!files.some((f) => f === 'latest.yml')) { - throw new Error('dist/latest.yml introuvable — lance d'abord `npm run build:win`.') + throw new Error("dist/latest.yml introuvable — lance d'abord `npm run build:win`.") } console.log(`Version : ${versionTag}`) console.log(`Artefacts : ${files.join(', ')}`) @@ -135,7 +135,7 @@ async function main() { { tag_name: 'latest', name: 'Auto-update (dernière version)', - body: 'Artefacts d'auto-update écrasés à chaque publication. Version courante : ' + versionTag, + body: "Artefacts d'auto-update écrasés à chaque publication. Version courante : " + versionTag, prerelease: false }, files