Skip to content

Commit

Permalink
Update github-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
raczeja authored Jan 7, 2025
1 parent afc1578 commit fccec78
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'''
Expand Down

0 comments on commit fccec78

Please sign in to comment.