diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 024329af..1fc8c483 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') env: CURSEFORGE_KEY_SECRET: ${{ secrets.CURSEFORGE_KEY_SECRET }} - run: ./gradlew curseforge + run: ./gradlew publishCurseForge - name: 'Deploy to Modrinth' if: startsWith(github.ref, 'refs/tags/') env: diff --git a/build.gradle b/build.gradle index 216861a8..7e01e7e8 100644 --- a/build.gradle +++ b/build.gradle @@ -234,10 +234,9 @@ task publishCurseForge(type: net.darkhax.curseforgegradle.TaskPublishCurseForge) def projectId = "237875" // my project url is http://minecraft.curseforge.com/mc-mods/237875/ def mainFile = upload(projectId, jar) + mainFile.releaseType = 'release' mainFile.changelogType = "text" - if (new File("resources/changelog/${project.version}.txt").exists()) { - mainFile.changelog = file("resources/changelog/${project.version}.txt") - } + mainFile.changelog = file("resources/changelog/${project.minecraft_version}-${project.version}.txt") mainFile.addGameVersion(project.minecraft_version) mainFile.addModLoader("NeoForge")