Skip to content

Commit

Permalink
ci: fix unable pass has_update flag
Browse files Browse the repository at this point in the history
  • Loading branch information
manhinhang committed Apr 16, 2024
1 parent 0a281af commit 99683a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/detect-new-ver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
export CUR_IBC_VER=$(cat ibc-ver)
if [ "$ib-gateway-ver" = "$CUR_IB_GATEWAY_VER" ]; then
echo "No dated IB gateway version"
has_update=false >> "$GITHUB_OUTPUT"
echo has_update=false >> "$GITHUB_OUTPUT"
else
echo "New IB gateway version($IB_GATEWAY_VER)"
has_update=true >> "$GITHUB_OUTPUT"
echo has_update=true >> "$GITHUB_OUTPUT"
fi
- name: Update files with new version
if: steps.check-update.outputs.has_update == 'true'
Expand Down

0 comments on commit 99683a3

Please sign in to comment.