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 8d079fa commit 8d19704Copy full SHA for 8d19704
.github/workflows/publish-tagged-build.yml
@@ -36,7 +36,7 @@ jobs:
36
exit 0
37
}
38
39
- $selected = ($tags | Sort-Object)[0]
+ $selected = ($tags | Sort-Object | Select-Object -First 1).Trim()
40
Write-Host "Found release tag '$selected'. Preparing publish."
41
"HAS_RELEASE_TAG=true" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
42
"RELEASE_TAG=$selected" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
0 commit comments