diff --git a/module.json b/module.json index 2c0b651..86fedc1 100644 --- a/module.json +++ b/module.json @@ -1,13 +1,13 @@ { "id": "oft", "title": "Oliver's Foundry Tweaks", - "version": "0.0.0", + "version": "1.0.0", "authors": [ { "name": "Oliver" } ], "download": "", "manifest": "", - "url": "", + "url": "https://git.varify.ca/Foundry/oft", "compatibility": { "minimum": 13, "verified": 13, diff --git a/scripts/createForgejoRelease.mjs b/scripts/createForgejoRelease.mjs index 67a8629..df4c82f 100644 --- a/scripts/createForgejoRelease.mjs +++ b/scripts/createForgejoRelease.mjs @@ -33,7 +33,7 @@ async function main() { tag_name: TAG, draft: true, hide_archive_links: true, - body: ``, + body: ``, }, { headers: { Authorization: `token ${TOKEN}` }, @@ -42,7 +42,7 @@ async function main() { try { await addReleaseAsset(release.data.id, `release.zip`); - await addReleaseAsset(release.data.id, `system.json`); + await addReleaseAsset(release.data.id, `module.json`); } catch (e) { console.error(`Failed to add assets to the release`); process.exit(1);