diff --git a/src/services/git.ts b/src/services/git.ts index e6ab3b3..af228e5 100644 --- a/src/services/git.ts +++ b/src/services/git.ts @@ -5,7 +5,8 @@ import { join } from "path"; import { config } from "../lib/config"; export async function getLatestChartVersion(): Promise { - const res = await fetch("https://api.digitalocean.com/v2/registry/lunarfront/repositories/lunarfront/tags?page=1&per_page=100", { + // Query backend image tags instead of Helm chart tags — DO API is unreliable for OCI helm artifacts + const res = await fetch("https://api.digitalocean.com/v2/registry/lunarfront/repositories/lunarfront-app/tags?page=1&per_page=100", { headers: { Authorization: `Bearer ${config.doToken}` }, }); const data = await res.json() as { tags: { tag: string }[] };