Skip to content

Commit 0edea24

Browse files
committed
Add versioning
1 parent ff38f31 commit 0edea24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nextjs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
key=lambda tag: [int(x) for x in re.findall(r'\d+', tag)]
6262
)
6363
64-
# Take the top 30 most recent tags
65-
patch_tags = patch_tags[-10:]
64+
# IMPORTANT: Take all versions after v7.18.0
65+
patch_tags = [tag for tag in patch_tags if [int(x) for x in re.findall(r'\d+', tag)] >= [7, 18, 0]]
6666
6767
# Build mapping: minor -> list of patch tags
6868
minor_to_patches = {}

0 commit comments

Comments
 (0)