Skip to content

Commit f34c554

Browse files
wip
1 parent 2040a4b commit f34c554

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/stage-3-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
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" \

scripts/bash/deploy_arc_ring.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ $pyPath = "C:\Python$pyMajorMinor"
100100
if (Test-Path $pyPath) { $env:Path += ";$pyPath" }
101101
$dst = "$env:TEMP\deploy.ps1"
102102
Invoke-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
105105
PSEOF
106106

0 commit comments

Comments
 (0)