Test deployment to vapor with dynamic commit message from git

This commit is contained in:
Dillon Ngo
2023-11-23 16:35:19 +08:00
parent 630f8a3e48
commit ba7672f103
Vendored
+1 -1
View File
@@ -44,7 +44,7 @@ pipeline {
script{
String gitCommitMessage = getCommitMessage()
println("GIT CommitMessage: " + gitCommitMessage)
sh 'vendor/bin/vapor deploy staging --message="${gitCommitMessage}"'
sh "vendor/bin/vapor deploy staging --message='${gitCommitMessage}'"
}
}
}