1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-07 04:47:55 +00:00

Merge branch 'mc-1.13.x' into mc-1.14-fabric

This commit is contained in:
SquidDev
2019-04-11 08:57:04 +01:00
38 changed files with 437 additions and 271 deletions

View File

@@ -9,6 +9,7 @@ buildscript {
plugins {
id 'fabric-loom' version '0.2.0-SNAPSHOT'
id 'com.matthewprenger.cursegradle' version '1.2.0'
id "com.github.breadmoirai.github-release" version "2.2.4"
}
apply plugin: 'org.ajoberstar.grgit'
@@ -299,6 +300,20 @@ uploadArchives {
}
}
githubRelease {
token project.hasProperty('githubApiKey') ? project.githubApiKey : ''
owner 'SquidDev-CC'
repo 'CC-Tweaked'
targetCommitish (mc_version == "1.12.2" ? "master" : mc_version)
tagName "v${mc_version}-${mod_version}"
releaseName "[${mc_version}] ${mod_version}"
body ''
prerelease true
releaseAssets.from(jar.archivePath)
}
test {
useJUnitPlatform()
testLogging {