spc-site/.space.kts

20 lines
540 B
Plaintext
Raw Normal View History

2022-05-22 16:52:36 +03:00
job("Deploy") {
container(displayName = "Build and install", image = "openjdk:11") {
kotlinScript { api ->
// here can be your complex logic
api.gradlew("installDist")
}
}
container(displayName = "Deploy", image = "openjdk:11") {
env["HOST"] = Params("sciprog-host")
env["ID"] = Secrets("sciprog-webmaster-id")
shellScript {
interpreter = "/bin/bash"
content = """
2022-05-25 18:28:30 +03:00
ls -la
""".trimIndent()
2022-05-22 16:52:36 +03:00
}
}
}