Update CD
This commit is contained in:
parent
0f223da648
commit
5e1625d98c
21
.space.kts
21
.space.kts
@ -26,4 +26,25 @@ job("Deploy") {
|
||||
""".trimIndent()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
job("Restart service"){
|
||||
startOn {
|
||||
gitPush { enabled = false }
|
||||
}
|
||||
|
||||
container(image = "openjdk:11") {
|
||||
env["HOST"] = Params("spc-host")
|
||||
env["USER"] = Secrets("spc-webmaster-user")
|
||||
env["ID"] = Secrets("spc-webmaster-id")
|
||||
|
||||
shellScript {
|
||||
interpreter = "/bin/bash"
|
||||
content = """
|
||||
echo ${'$'}ID > id.key
|
||||
chmod 400 id.key
|
||||
ssh -i id.key -t "${'$'}USER@${'$'}HOST" "systemctl restart sciprog-site"
|
||||
""".trimIndent()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user