Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aad66e3ac6 | |||
| 0c20bbb435 | |||
| 371dd08eaa | |||
| ffdc77ecd7 | |||
| 6a0c4b255f |
Vendored
+7
-1
@@ -98,7 +98,13 @@ powershell -NoProfile -ExecutionPolicy Bypass -File gitea-release.ps1
|
||||
writeFile file: 'taiga-post.ps1', text: '''
|
||||
$ErrorActionPreference = "Continue"
|
||||
|
||||
$commitMsg = git log -1 --pretty=%B
|
||||
$commitMsg = git log -1 --pretty=%B 2>$null
|
||||
|
||||
if ([string]::IsNullOrWhiteSpace($commitMsg)) {
|
||||
Write-Host "No git commit message available"
|
||||
exit 0
|
||||
}
|
||||
|
||||
$match = [regex]::Match($commitMsg, 'TG-(\\d+)')
|
||||
|
||||
if (-not $match.Success) {
|
||||
|
||||
+23
-1
@@ -1,5 +1,27 @@
|
||||
{
|
||||
"dependencies": [
|
||||
"qtbase"
|
||||
"qt5",
|
||||
"qt5-serialport",
|
||||
"qt5-svg",
|
||||
"qt5-tools",
|
||||
"qt5-declarative",
|
||||
|
||||
"qt",
|
||||
"qtdeclarative",
|
||||
"qtserialport",
|
||||
"qtsvg",
|
||||
"qttools",
|
||||
|
||||
"boost",
|
||||
"boost-asio",
|
||||
"boost-filesystem",
|
||||
"boost-system",
|
||||
"boost-thread",
|
||||
"boost-regex",
|
||||
"boost-date-time",
|
||||
"boost-program-options",
|
||||
"boost-serialization",
|
||||
"boost-random",
|
||||
"boost-iostreams"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user