read_version_from_github

in report/download_artifacts.rb [50:55]


    def read_version_from_github
      yml = File.read(File.expand_path('../.github/workflows/report.yml', __dir__))
      regexp = /[0-9.]+(-SNAPSHOT)?/
      yml.split("\n").select { |l| l.match?('STACK_VERSION') }.first.strip.match(regexp)[0]
    end