Skip to content

Commit

Permalink
Fix deprecation in GitHub workflow (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
thenextman authored May 4, 2023
1 parent f1ee5ac commit 314215b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nuget-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
$IsDryRun = '${{ github.event.inputs.dry-run }}' -Eq 'true' -Or '${{ github.event_name }}' -Eq 'schedule'
if ($IsDryRun) {
Write-Host '::set-output name=dry-run::true'
echo "dry-run=true" >> $Env:GITHUB_OUTPUT
} else {
Write-Host '::set-output name=dry-run::false'
echo "dry-run="false" >> $Env:GITHUB_OUTPUT
}
build-native:
Expand Down

0 comments on commit 314215b

Please sign in to comment.