Slide 49
Slide 49 text
Kotlin Dev Day - @marcoGomier
project.exec {
workingDir = File("$rootDir/
..
/
..
/hn-foundation-cocoa-xcframework")
commandLine("git", "add", ".").standardOutput
}
project.exec {
workingDir = File("$rootDir/
..
/
..
/hn-foundation-cocoa-xcframework")
commandLine("git", "commit", "-m", "\"New release: ${libVersionName}\"").standardOu
}
project.exec {
workingDir = File("$rootDir/
..
/
..
/hn-foundation-cocoa-xcframework")
commandLine("git", "tag", libVersionName).standardOutput
}
project.exec {
workingDir = File("$rootDir/
..
/
..
/hn-foundation-cocoa-xcframework")
commandLine("git", "push", "origin", "main", "
--
tags").standardOutput
}
}
}
}