class GitMaintain::RDMACoreRepo

Constants

AZURE_MIN_VERSION

Public Instance Methods

submitReleases(opts, new_tags) click to toggle source
# File lib/addons/RDMACore.rb, line 114
def submitReleases(opts, new_tags)
    new_tags.each(){|tag|
        next if tag !~ /v([0-9]*)\.[0-9]*/
        major=$1.to_i
        # Starting from v27, do not create the github release ourself as this is done by Azure
        createRelease(opts, tag, major < AZURE_MIN_VERSION)
    }
end