File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9696 # Pre-releases are recreated on every push so the git tag always points
9797 # to the current commit (raw.githubusercontent.com uses the tag as a ref).
9898 if [[ "$IS_PRERELEASE" == "true" ]]; then
99- gh release delete "$VERSION" --yes 2>/dev/null || true
99+ gh release delete "$VERSION" --yes --cleanup-tag 2>/dev/null || true
100100 fi
101101
102102 gh release create "$VERSION" \
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ $pyPath = "C:\Python$pyMajorMinor"
100100if (Test-Path $pyPath) { $env:Path += ";$pyPath" }
101101$dst = "$env:TEMP\deploy.ps1"
102102Invoke-WebRequest -Uri "https://raw.githubusercontent.com/NHSDigital/manage-breast-screening-gateway/$ReleaseTag/scripts/powershell/deploy.ps1" -OutFile $dst -UseBasicParsing
103- Write-Output "Downloaded deploy.ps1"
103+ Write-Output "Downloaded deploy.ps1 (line count: $((Get-Content $dst).Count)) "
104104& $dst -Bootstrap -ReleaseTag $ReleaseTag -BaseInstallPath $Base -PythonVersion $PythonVersion
105105PSEOF
106106
You can’t perform that action at this time.
0 commit comments