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 43b2082 commit afc1578
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ jobs:
$tag = $tags[0]
echo "{frameworkVersion}={value}" >> "$tag"
if: startsWith(github.ref, 'refs/tags/')
- shell: powershell
run: |
$SHFBIFilePath = "SHFBInstaller_2024.12.21.0.zip"
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
Remove-Item -Path $SHFBIFilePath -Force
- shell: powershell
run: '(Get-Content ''Ocaramba.sln'' -raw) -replace [regex](''.*?'' + ''Documentation'' + (''.*?\r\n'' * (5 + 1))) | set-content ''Ocaramba.sln'''
- name: Update ChromeDriver in csproj
Expand Down

0 comments on commit afc1578

Please sign in to comment.