Skip to content

Commit

Permalink
gha: Fix echo output redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
TSRBerry authored Oct 15, 2022
1 parent 3c7b3ab commit 8a9ff0f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ jobs:
run: |
export CURRENT_VER=$(grep -e "Version" Miniscript.csproj | awk -F'>' '{print $2}' | awk -F'<' '{print $1}')
[[ "${{ steps.nuget-ver.outputs.version }}" != "$CURRENT_VER" ]] \
&& echo "new-version=true" \
|| echo "new-version=false" \
>> $GITHUB_OUTPUT
&& echo "new-version=true" >> $GITHUB_OUTPUT \
|| echo "new-version=false" >> $GITHUB_OUTPUT
nuget:
name: Release Nuget package
Expand Down

0 comments on commit 8a9ff0f

Please sign in to comment.