Skip to content

Commit

Permalink
fix: Resolved issue with the unified feed not being written to disk i…
Browse files Browse the repository at this point in the history
…n CI
  • Loading branch information
adam-coster committed Jul 9, 2023
1 parent fe69a8c commit efe568d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/site/scripts/update-unified-feed.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const cache = await (
).json();
await notesCache.write(cache);

/** @type {boolean} */
let b = false;
const releases = await computeReleasesSummaryWithNotes(undefined, notesCache);
await summaryPath.write(releases);
console.log('Latest GameMaker IDE:', releases[0].ide.version);

if (b) {
const releases = await computeReleasesSummaryWithNotes(undefined, notesCache);
await summaryPath.write(releases);
console.log('Latest GameMaker IDE:', releases[0].ide.version);
}
await notesCache.exists({ assert: true });
await summaryPath.exists({ assert: true });

console.log('Updated GameMaker releases summary.', summaryPath.absolute, notesCache.absolute);

0 comments on commit efe568d

Please sign in to comment.