From 0e09c6f3a1e579e3103f39d447fd6d0ce9be6f55 Mon Sep 17 00:00:00 2001 From: Robin Wallin Date: Tue, 17 Sep 2024 12:27:26 +0200 Subject: [PATCH] Skip releases that do not start with "OTP-" (#13) From https://github.com/cloudamqp/erlang-packages/pull/12#issuecomment-2354750224 > 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. --- bin/missing-versions | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/missing-versions b/bin/missing-versions index 85e5637..f73b2ec 100755 --- a/bin/missing-versions +++ b/bin/missing-versions @@ -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