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 96494e6 commit 4e91375Copy full SHA for 4e91375
.github/workflows/openhab.yml
@@ -55,8 +55,10 @@ jobs:
55
56
$IS_BETA_RELEASE = '${{ inputs.IsBetaRelease }}'
57
if ($IS_BETA_RELEASE -eq 'true') {
58
+ Write-Host "Set release name to Beta:$CURRENTDATE.${{github.run_number}}"
59
Write-Host "RELEASE_NAME=Beta:$CURRENTDATE.${{github.run_number}}" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
60
} else {
61
+ Write-Host "Set release name to $CURRENTDATE"
62
Write-Host "RELEASE_NAME=$CURRENTDATE" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
63
}
64
0 commit comments