diff --git a/.space.kts b/.space.kts index cb9b85a..46b382e 100644 --- a/.space.kts +++ b/.space.kts @@ -1,13 +1,14 @@ job("Deploy") { - container(displayName = "Build and install", image = "openjdk:11") { - kotlinScript { api -> - // here can be your complex logic - api.gradlew("installDist") - } + startOn { + gitPush { enabled = false } } - container(displayName = "Deploy", image = "openjdk:11") { - env["HOST"] = Params("sciprog-host") - env["ID"] = Secrets("sciprog-webmaster-id") + + gradlew("openjdk:11", "installDist") + + container(displayName = "Deploy via scp", image = "openjdk:11") { + env["HOST"] = Params("spc-host") + env["USER"] = Secrets("spc-webmaster-user") + env["ID"] = Secrets("spc-webmaster-id") shellScript { interpreter = "/bin/bash"