Skip to content

Commit

Permalink
Set Output Params Correctly
Browse files Browse the repository at this point in the history
Update from "set-output" which is deprecated to the "GITHUB_OUTPUT"
environment file.
  • Loading branch information
AdrianJSClark committed Jan 1, 2024
1 parent 5fb3bea commit 54be0b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Aydsko.iRacingData/Aydsko.iRacingData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<IsPreReleaseBuild>true</IsPreReleaseBuild>
<IsPreReleaseBuild Condition="'$(MinVerPreRelease)' == ''">false</IsPreReleaseBuild>
</PropertyGroup>
<Exec Command="echo ::set-output name=BUILDVERSION::$(MinVerVersion)" IgnoreExitCode="true" />
<Exec Command="echo ::set-output name=PRERELEASE::$(IsPreReleaseBuild)" IgnoreExitCode="true" />
<Exec Command="echo &quot;BUILDVERSION=$(MinVerVersion)&quot; >> &quot;$GITHUB_OUTPUT&quot;" IgnoreExitCode="true" />
<Exec Command="echo &quot;PRERELEASE=$(IsPreReleaseBuild)&quot; >> &quot;$GITHUB_OUTPUT&quot;" IgnoreExitCode="true" />
</Target>
</Project>

0 comments on commit 54be0b8

Please sign in to comment.