Skip to content

Commit

Permalink
add logs
Browse files Browse the repository at this point in the history
Signed-off-by: Billy Zha <[email protected]>
  • Loading branch information
qweeah committed Jan 30, 2024
1 parent f48c3c3 commit fd54a74
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release-snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
LAST=$(echo -e "$1\n$2" | sort -V | tail -n 1)
# Check which number is the first and which is the last
if [ "$FIRST" <> "$1" ]; then
echo "$1 is newer than $2"
true
fi
fi
Expand All @@ -54,9 +55,9 @@ jobs:
# Get all tags starting with A
tags=()
while read -r tag; do
if [[ "$tag" == "$VERSION" ]]; then
continue
fi
if [[ "$tag" == "$VERSION" ]]; then
continue
fi
tags+=("$tag")
done < <(git tag -l 'v*')
for T in "${tags[@]}"; do
Expand Down

0 comments on commit fd54a74

Please sign in to comment.