From 3c8bd028086e5beb09fb9fe86dc4eca6b4974749 Mon Sep 17 00:00:00 2001 From: Alexandr Stelnykovych Date: Tue, 9 Dec 2025 23:27:02 +0200 Subject: [PATCH] Earthfile: exclude extra fields when creating assets.zip --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 6821286f..a9720e21 100644 --- a/Earthfile +++ b/Earthfile @@ -359,7 +359,7 @@ assets: WORKDIR /app/assets COPY --keep-ts ./assets/data . - RUN zip -r -9 -db assets.zip * + RUN zip -r -9 -db -X assets.zip * SAVE ARTIFACT --keep-ts "assets.zip" AS LOCAL "${outputDir}/all/assets.zip"