forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathupdate-git-version.rb
26 lines (21 loc) · 966 Bytes
/
update-git-version.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env ruby
# This is a simple Ruby script to update the Git version in hugo.yml
require "octokit"
require "yaml"
require_relative "version"
octokit = Octokit::Client.new(access_token: ENV.fetch("GITHUB_API_TOKEN", nil))
tags = octokit.tags("git/git")
.map { |item| item.first[1] }
.select { |tag| tag =~ /^v\d+(\.\d+){2,3}$/ } # filter out e.g. -rc versions
.sort_by { |tag| -Version.version_to_num(tag) }
version = tags[0].gsub(/^v/, "")
ref = octokit.ref("git/git", "tags/#{tags[0]}")
tag = octokit.tag("git/git", ref.object.sha)
date = tag.tagger.date
config = YAML.load_file("hugo.yml")
config["params"] = {} if config["params"].nil?
config["params"]["latest_version"] = version
config["params"]["latest_relnote_url"] = "https://raw.github.com/git/git/master/Documentation/RelNotes/#{version}.adoc"
config["params"]["latest_release_date"] = date.strftime("%Y-%m-%d")
yaml = YAML.dump(config).gsub(/ *$/, "")
File.write("hugo.yml", yaml)