From 23b49ecc72d71c9d4621f5a545fed3669bdfabcb Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 17 Nov 2024 12:19:56 -0500 Subject: [PATCH] Log TGS .msi install details --- .github/workflows/ci-pipeline.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index a64653896d..bdb5180462 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1538,6 +1538,10 @@ jobs: if (Test-Path -Path $log -PathType Leaf) { Get-Content $log } + $potentialMsiLog = [System.IO.Path]::GetFullPath("install_000_tgstation_server.msi.log") + if (Test-Path -Path $potentialMsiLog -PathType Leaf) { + Get-Content $potentialMsiLog + } $installCode = $procMain.ExitCode if($installCode -ne 0) { Write-Host "ERROR INSTALLER EXIT CODE $installCode"