diff --git a/CHANGELOG.md b/CHANGELOG.md index bc9852f..bfb31e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,5 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.0.1] - 2022-06-07 +### Added +- Skeletor setup step + ## [1.0.0] - 2022-06-06 - Initial release \ No newline at end of file diff --git a/teamcity/settings.kts.in b/teamcity/settings.kts.in index 5d86946..0f38206 100644 --- a/teamcity/settings.kts.in +++ b/teamcity/settings.kts.in @@ -107,6 +107,10 @@ open class BuildAndroidType(proj : String, env : String, branch: String) : var gamectl_environment = if("%build.env.debug%" == "true") env.replace("global", "dev") else env steps { + script { + name = "Setup skeletor" + scriptContent = "./setup.sh" + } script { name = "Deps Update" scriptContent = "./gamectl try_deps_update" @@ -168,6 +172,10 @@ open class BuildIOSType(proj : String, env : String, branch : String) : var gamectl_environment = if("%build.env.debug%" == "true") env.replace("global", "dev") else env steps { + script { + name = "Setup skeletor" + scriptContent = "./setup.sh" + } script { name = "Deps Update" scriptContent = "./gamectl try_deps_update"