Skip to content

Commit 37aa2da

Browse files
authored
Update continuous-integration-workflow.yml
1 parent 03c7e77 commit 37aa2da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
try {
6262
msbuild "$($sqlproj_file.FullName)" /p:Configuration=Release
6363
if (!$?) {
64-
$errors = "Failed to build $($csproj_file.FullName)"
64+
$errors += "Failed to build $($csproj_file.FullName)"
6565
}
6666
} catch {
6767
# Capture detailed error information
@@ -98,7 +98,7 @@ jobs:
9898
try {
9999
dotnet build "$($csproj_file.FullName)" --configuration Release
100100
if (!$?) {
101-
$errors = "Failed to build $($csproj_file.FullName)"
101+
$errors += "Failed to build $($csproj_file.FullName)"
102102
}
103103
} catch {
104104
# Capture detailed error information

0 commit comments

Comments
 (0)