Skip to content

Commit

Permalink
Make a security check before publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Andronnix committed Nov 29, 2024
1 parent 472a3a4 commit 980c809
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ project {
}
}

buildType {
val securityCheck = buildType {
id("SecurityCheck")
name = "Security check with Qodana"

Expand Down Expand Up @@ -239,6 +239,12 @@ project {
branchFilter = "+:<default>"
}

dependencies {
snapshot(securityCheck) {
onDependencyFailure = FailureAction.FAIL_TO_START
}
}

steps {
gradle {
name = "Publish"
Expand Down

0 comments on commit 980c809

Please sign in to comment.