GitLab CI Kotlin DSL • opensavvy.gitlab.ci • Environment • name
name¶
Declares the name of the environment, as it will be displayed in the GitLab UI.
val deploy-qa by job {
script {
// …
}
environment {
name("qa")
url("https://qa.your.app/dashboard")
}
}