From d72213bb7613f22b028bcd13269fb8f9066a1656 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Wed, 17 Jan 2024 16:33:38 +0100 Subject: [PATCH] fix: Update CI Python script --- .github/verify_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/verify_versions.py b/.github/verify_versions.py index 42e8060..a6608fc 100644 --- a/.github/verify_versions.py +++ b/.github/verify_versions.py @@ -10,7 +10,7 @@ print('Verifying "{}":'.format(mod)) # Build GitHub API link and fetch distant tags list - words = manifesto[mod]['Repository'].split('/') + words = manifesto['thunderstore'][mod]['Repository'].split('/') tags_url = "https://api.github.com/repos/{}/{}/tags".format(words[-2], words[-1]) response = urlopen(tags_url) tags_data = json.loads(response.read())