mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-26 13:28:27 +00:00
9f2d4c3a63
(cherry picked from commit 0068efdca3)
Co-authored-by: madomado <madonuko@outlook.com>
11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr();
|
|
for tagobj in tagobjs {
|
|
if tagobj.name.starts_with("cli-v") {
|
|
rpm.global("tag", tagobj.name);
|
|
if rpm.changed() {
|
|
rpm.release();
|
|
break;
|
|
}
|
|
}
|
|
}
|