Slide 66
Slide 66 text
Kotlin Budapest Meetup - @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
}
}
}
}