Skip to content

Commit

Permalink
fix: use GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
loekd authored Aug 21, 2024
1 parent 4ef2163 commit 6eaf700
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/NuGetCD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
if ($diff -match "<PackageReference Include=`"$PACKAGE_NAME`"") {
Write-Host "SF Package version has changed."
echo "sf_ver_changed=true" >> $env:GITHUB_ENV
echo "sf_ver_changed=true" >> $env:GITHUB_OUTPUT
} else {
Write-Host "No changes to SF package version."
echo "sf_ver_changed=false" >> $env:GITHUB_ENV
echo "sf_ver_changed=false" >> $env:GITHUB_OUTPUT
}
# Run echo
Expand Down

0 comments on commit 6eaf700

Please sign in to comment.