Skip to content

Commit 602b0b8

Browse files
authored
정렬 부분 수정
1 parent ace50b1 commit 602b0b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/merge-and-generate-problems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
id: determine-folder
6464
if: env.pr_found == 'true'
6565
run: |
66-
LATEST_TEST=$(find live* -type d -name 'test[0-9]*' 2>/dev/null | sort | tail -n 1 | grep -o '[0-9]*$' || echo "0")
66+
LATEST_TEST=$(find live* -type d -name 'test[0-9]*' 2>/dev/null | sort -V | tail -n 1 | grep -o '[0-9]*$' || echo "0")
6767
6868
NEXT_TEST=$((LATEST_TEST + 1))
6969

0 commit comments

Comments
 (0)