We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f48f76 commit c656f59Copy full SHA for c656f59
1 file changed
.github/actions/setup-sql-windows/action.yml
@@ -14,12 +14,9 @@ runs:
14
run: |
15
$ssei = Join-Path $env:RUNNER_TEMP 'SQL2025-SSEI-Expr.exe'
16
$media = Join-Path $env:RUNNER_TEMP 'sql-media'
17
- # Stable Microsoft fwlink redirecting to the SQL Server 2025 Express bootstrapper (SSEI)
18
Invoke-WebRequest -Uri 'https://go.microsoft.com/fwlink/?linkid=2216019' -OutFile $ssei
19
Write-Host "Downloaded SSEI: $((Get-Item $ssei).Length) bytes"
20
21
- # Run SSEI in download-only mode. Use Start-Process -Wait so we get a real exit code
22
- # (PowerShell's `&` returns asynchronously for installer-class executables).
23
$p = Start-Process -FilePath $ssei -Wait -PassThru -ArgumentList @(
24
'/Quiet',
25
'/Action=Download',
0 commit comments