Created How to update supported fabric version for curseforge release pipeline (markdown)

Aurora Lahtela 2022-03-31 20:59:39 +03:00
parent f3dda3f72a
commit 866e891651
1 changed files with 11 additions and 0 deletions

@ -0,0 +1,11 @@
Get the versions from
```url
https://minecraft.curseforge.com/api/game/versions?token=yourAPIKeyHere
```
The list is huge so Ctrl-F is your friend.
Since there can be multiple identical versions (eg. 1.18.1) for different platforms, each "version" also has a version type ID (that's the xxx: part in the workflow) that can be found from
```url
https://minecraft.curseforge.com/api/game/version-types?token=yourAPIKeyHere
```
Basically, you first look at version-types for the correct type ID for the major version you're looking for, and then Ctrl-F for that ID in the versions endpoint to find the available slugs for that version.