From fccec78676078b1a8611623ea9bf257893885d62 Mon Sep 17 00:00:00 2001 From: Jakub Raczek Date: Tue, 7 Jan 2025 12:37:38 +0100 Subject: [PATCH] Update github-actions.yml --- .github/workflows/github-actions.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index f2938fe8..fd6fefe1 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -45,13 +45,7 @@ jobs: Invoke-WebRequest https://github.com/EWSoftware/SHFB/releases/download/2024.12.21.0/SHFBInstaller_2024.12.21.0.zip -OutFile $SHFBIFilePath Expand-Archive -Path $SHFBIFilePath -DestinationPath ".\SHFBInstaller" $SHFBIFilePath = ".\SHFBInstaller\SandcastleInstaller.exe" - $SCArguments = @( - "/i" - ('"{0}"' -f $SHFBIFilePath) - "/qn" - "/norestart" - ) - Start-Process "msiexec.exe" -ArgumentList $SCArguments -Wait -NoNewWindow + Start-Process -FilePath $SHFBIFilePath -ArgumentList "/silent", "/install" -NoNewWindow -Wait Remove-Item -Path $SHFBIFilePath -Force - shell: powershell run: '(Get-Content ''Ocaramba.sln'' -raw) -replace [regex](''.*?'' + ''Documentation'' + (''.*?\r\n'' * (5 + 1))) | set-content ''Ocaramba.sln'''