Conquerix
Conquerix
Small edit to the modification: ```python import shutil if modPath.lower().endswith(".7z") or modPath.lower().endswith(".rar"): import patoolib patoolib.extract_archive(modPath, outdir=extractedDir) else: shutil.unpack_archive(modPath, extractedDir) ``` The previous code didn't handle zip files well
+1 It's a problem for modpacks, the mod is not downloaded on the client
Actually I upload my pack to curse forge only (mainly because of the mod ms present). On there when uploading a client pack version, you can include other files, and...
Ok so I looked into it a bit more, it seems that one can use files-primary and files-secondary to specify which files go where when uploading several of them In...
Ok nevermind with the primary and secondary files they seem to be deprecated (see [here](https://github.com/Kir-Antipov/mc-publish/blob/69d94c54c333ce6df545827ddfdd3ecb7f1ac8b8/action.template.yml#L84-L99)) I wonder what would happen if the `files` input had several files in it. Would...
The `type: client` thing seems to be in preparation for their v4 yup. I'll try and see in my project how to do it without the matrices, seems doable and...
Ok so I completely modified the pipeline on my repo to try without the matrices, basically it works. If you put several files in the `files` field of mc-publish, it...
> > Ok so I completely modified the pipeline on my repo to try without the matrices, basically it works. If you put several files in the `files` field of...