diff --git a/.space.kts b/.space.kts index 288c9ea..80633f7 100644 --- a/.space.kts +++ b/.space.kts @@ -8,6 +8,13 @@ job("Deploy") { env["SPC_USER"] = Secrets("spc-webmaster-user") env["SPC_ID"] = Secrets("spc-webmaster-id") kotlinScript { api -> + api.space().projects.automation.deployments.start( + project = api.projectIdentifier(), + targetIdentifier = TargetIdentifier.Key("spc-site"), + version = "current", + // automatically update deployment status based on a status of a job + syncWithAutomationJob = true + ) api.gradle("uploadDistribution") } }