Skip to content

Commit

Permalink
fix test param
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Jan 23, 2025
1 parent 84297be commit 6d29c26
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/watch-df-steam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ jobs:
else
echo "stored timestamp of last branch update: $last_timestamp"
fi
if [ "$timestamp" > "$last_timestamp" ]; then
echo "$timestamp" >state/timestamp
echo TIMESTAMP=$timestamp >> $GITHUB_ENV
if [ "$timestamp" -gt "$last_timestamp" ]; then
echo "branch updated"
echo "$timestamp" >state/timestamp
echo TIMESTAMP=$timestamp >> $GITHUB_ENV
fi
- name: Discord Webhook Action
uses: tsickert/[email protected]
Expand Down

0 comments on commit 6d29c26

Please sign in to comment.