From f4a50a8fde877075ce3877efd54578997d5e7ece Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Fri, 13 Mar 2026 14:49:05 -0700 Subject: [PATCH] build: skip archiving patch conflict fix artifact (#50251) The update-patches artifact is a single .patch file, so zipping it is unnecessary overhead. With archive: false, gh run download fetches the raw file directly without requiring a decompression step. Co-authored-by: Claude --- .github/workflows/apply-patches.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/apply-patches.yml b/.github/workflows/apply-patches.yml index 18ceed1d60..f7b059791a 100644 --- a/.github/workflows/apply-patches.yml +++ b/.github/workflows/apply-patches.yml @@ -78,3 +78,4 @@ jobs: name: update-patches path: patches/update-patches.patch if-no-files-found: ignore + archive: false