One more changelog CurseForge test

This commit is contained in:
pahimar 2015-01-30 23:31:54 -05:00
parent 3aa0a5202c
commit f605ad057b

View file

@ -162,12 +162,15 @@ tasks.setupDevWorkspace.dependsOn copyChicken
tasks.setupDecompWorkspace.dependsOn copyChicken
curse {
dependsOn 'reobf'
onlyIf { return project.hasProperty('ee3_curseforge_apikey') }
projectId = project.ee3_curseforge_projectid
apiKey = project.ee3_curseforge_apikey
changelog = 'Until there is a nice way to include changelogs with these builds, please check out the commit log on the official GitHub project'
changelog = project.hasProperty('changelog') ? project.changelog : ''
releaseType = 'alpha'
additionalArtifact devJar
additionalArtifact "$project.buildDir/libs/$project.archivesBaseName-$config.minecraft_version-$config.mod_version.${System.getenv().BUILD_NUMBER}-changelog.txt"
}
uploadArchives {