ci: Gitea Actions 자동 빌드/배포 워크플로우 추가 #1

병합
htlee codex/subcables-static 에서 develop 로 16 commits 를 머지했습니다 2026-02-16 07:16:47 +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;
}