From df8967be12b1dcbe411b4bf2ed008c85075ea2e9 Mon Sep 17 00:00:00 2001 From: wrenge Date: Tue, 7 Jun 2022 11:38:38 +0300 Subject: [PATCH] Added skeletor setup step --- CHANGELOG.md | 4 ++++ teamcity/settings.kts.in | 8 ++++++++ 2 files changed, 12 insertions(+) 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"