Merge branch 'use-gitlab-latest-release-link' into 'main'

ci: use gitlab latest release link

See merge request dungeonslayers/ds4!197
This commit is contained in:
Johannes Loher 2022-05-23 05:20:19 +00:00
commit ea942345f5
4 changed files with 34 additions and 27 deletions

View file

@ -12,8 +12,8 @@ const gitlabURL = "https://git.f3l.de";
const getLicenseURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/LICENSE.md`;
const getReadmeURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/README.md`;
const getChangelogURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}`;
const getDownloadURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}/downloads/ds4.zip`;
const getChangelogURL = (version) => `${gitlabURL}/${repository}/-/releases/v${version}`;
const getDownloadURL = (version) => `${gitlabURL}/${repository}/-/releases/v${version}/downloads/system.zip`;
const manifestPath = "./system.json";