From 62a1390903181d7425a66cfe4ed2549e2d9ba266 Mon Sep 17 00:00:00 2001 From: yunchan8804 Date: Wed, 15 Apr 2026 22:03:51 +0900 Subject: [PATCH] =?UTF-8?q?fix(ci):=20artifacts=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EC=A2=81=ED=9E=98=20=E2=80=94=20.exe=20+=20=EB=A9=94=ED=83=80?= =?UTF-8?q?=EB=A7=8C=20=EC=97=85=EB=A1=9C=EB=93=9C=20(win-unpacked=20?= =?UTF-8?q?=EC=A0=9C=EC=99=B8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - apps/desktop/release/ 전체(1490 파일)는 GitLab 아티팩트 용량 한도 초과 - 최종 산출물인 NSIS 설치파일(*.exe) + latest.yml + blockmap만 업로드 --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5b8e9a4..b2878dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,8 +92,12 @@ package-windows: - npm run dist --workspace=@d3ro/desktop artifacts: name: "d3ro-voice-windows-${CI_COMMIT_SHORT_SHA}" + # win-unpacked/ (수GB)은 제외하고 최종 .exe 설치파일 + 메타만 업로드. + # GitLab 인스턴스의 아티팩트 용량 한도 초과 방지. paths: - - apps/desktop/release/ + - apps/desktop/release/*/*.exe + - apps/desktop/release/*/latest.yml + - apps/desktop/release/*/*.blockmap expire_in: 90 days expose_as: "Windows Installer" rules: