We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef15dd9 commit ecb6e85Copy full SHA for ecb6e85
1 file changed
.github/workflows/test-pypi.yml
@@ -86,7 +86,7 @@ jobs:
86
$i = 0
87
do {
88
$i++
89
- Write-Host "Attempt $i: installing paint-csp-test==${env:VERSION}"
+ Write-Host "Attempt ${i}: installing paint-csp-test==${env:VERSION}"
90
pip install --index-url https://test.pypi.org/simple/ `
91
--extra-index-url https://pypi.org/simple `
92
--pre `
@@ -95,7 +95,7 @@ jobs:
95
Write-Host "Install succeeded"
96
break
97
}
98
- Write-Host "Not ready yet, retrying in $sleepSeconds seconds..."
+ Write-Host "Not ready yet, retrying in ${sleepSeconds} seconds..."
99
Start-Sleep -Seconds $sleepSeconds
100
} while ($i -lt $maxAttempts)
101
0 commit comments