Skip to content

Commit

Permalink
Skip releases that do not start with "OTP-" (#13)
Browse files Browse the repository at this point in the history
From #12 (comment)

> Any tag that does not have a `OTP-` prefix you can ignore.

We had a problem with a release called "patch-base-26", see #12 for more information.
  • Loading branch information
walro authored Sep 17, 2024
1 parent e8fb7ea commit 0e09c6f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bin/missing-versions
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ github.releases do |r|
next if r["prerelease"]
next if r["draft"]
next if r["tag_name"].include? "-rc"
next unless r["tag_name"].start_with?("OTP-")
version = r["tag_name"].sub("OTP-", "")
DISTS.each do |dist|
# Debian Bookworm doesn't have gcc 9 which is required for erlang <24.2
Expand Down

0 comments on commit 0e09c6f

Please sign in to comment.