release: fix latest release metadata urls

This commit is contained in:
Tyler Wilding 2022-06-18 21:35:47 -04:00
parent 1cda948b54
commit a58f67b16f
No known key found for this signature in database
GPG key ID: A89403EB356ED106
2 changed files with 4 additions and 4 deletions

View file

@ -69,13 +69,13 @@ const releaseMeta = {
}/opengoal-launcher_${tagToSearchFor.replace( }/opengoal-launcher_${tagToSearchFor.replace(
"v", "v",
"" ""
)}_amd64.AppImage.tar.gz`, )}_amd64.AppImage`,
}, },
win64: { win64: {
signature: "", signature: "",
url: `https://github.com/open-goal/launcher/releases/download/${ url: `https://github.com/open-goal/launcher/releases/download/${
release.tag_name release.tag_name
}/opengoal-launcher_${tagToSearchFor.replace("v", "")}_x64_en-US.msi.zip`, }/opengoal-launcher_${tagToSearchFor.replace("v", "")}_x64_en-US.msi`,
}, },
}, },
}; };

View file

@ -5,11 +5,11 @@
"platforms": { "platforms": {
"linux": { "linux": {
"signature": "", "signature": "",
"url": "https://github.com/open-goal/launcher/releases/download/v0.2.5/opengoal-launcher_0.2.5_amd64.AppImage.tar.gz" "url": "https://github.com/open-goal/launcher/releases/download/v0.2.5/opengoal-launcher_0.2.5_amd64.AppImage"
}, },
"win64": { "win64": {
"signature": "", "signature": "",
"url": "https://github.com/open-goal/launcher/releases/download/v0.2.5/opengoal-launcher_0.2.5_x64_en-US.msi.zip" "url": "https://github.com/open-goal/launcher/releases/download/v0.2.5/opengoal-launcher_0.2.5_x64_en-US.msi"
} }
} }
} }