Skip to content

Commit

Permalink
Merge pull request #197 from AdrianJSClark/set-output-params-properly
Browse files Browse the repository at this point in the history
Set Output Params Correctly
  • Loading branch information
AdrianJSClark committed Jan 1, 2024
2 parents 5fb3bea + 864302c commit e48e1e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
PACKAGE_KEY: ${{ secrets.PACKAGE_UPLOAD }}

- name: Delete Old Packages
uses: smartsquaregmbh/delete-old-packages@v0.6.0
uses: smartsquaregmbh/delete-old-packages@v0.7.0
with:
user: AdrianJSClark
type: nuget
Expand Down
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 e48e1e1

Please sign in to comment.