mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-25 21:10:39 +00:00
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;
|
|
}
|
|
}
|
|
}
|