Skip to content

Commit

Permalink
Fix nightly version info extracting script.
Browse files Browse the repository at this point in the history
  • Loading branch information
GGG-KILLER committed Apr 12, 2023
1 parent fd9bf8d commit e5ecb32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/Extract-NightlyVersionInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Write-Output "Next Stable Release: $unreleasedVersion"
Write-Output "Latest Nightly Release: $latestNightlyVersion"
Write-Output "Next Nightly Version: $nightlyVersionToPublish (no v: $($nightlyVersionToPublish.Substring(1)))"

Write-Output "::set-output name=VERSION::$nightlyVersionToPublish"
Write-Output "::set-output name=NO_PREFIX_VERSION::$($nightlyVersionToPublish.Substring(1))"
Write-Output "::set-output name=HAS_NIGHTLY::yes"
"VERSION=$nightlyVersionToPublish" >> $env:GITHUB_OUTPUT
"NO_PREFIX_VERSION=$($nightlyVersionToPublish.Substring(1))" >> $env:GITHUB_OUTPUT
"HAS_NIGHTLY=yes" >> $env:GITHUB_OUTPUT
exit 0

0 comments on commit e5ecb32

Please sign in to comment.