ci: Gitea Actions CI/CD 파이프라인 + 기능 업데이트 #2

병합
htlee develop 에서 main 로 59 commits 를 머지했습니다 2026-02-16 07:35:55 +09:00
Showing only changes of commit 4c257a2883 - Show all commits

파일 보기

@ -295,8 +295,8 @@ export async function resolveInitialMapStyle(signal: AbortSignal): Promise<strin
const res = await fetch(styleUrl, { signal, headers: { accept: 'application/json' } });
if (!res.ok) throw new Error(`MapTiler style fetch failed: ${res.status} ${res.statusText}`);
const json = (await res.json()) as StyleSpecification;
injectOceanBathymetryLayers(json, key);
applyKoreanLabels(json);
injectOceanBathymetryLayers(json, key);
return json;
}