From 3552a7fded008cd8b1c2b1e4aa0bd3afb83bcc26 Mon Sep 17 00:00:00 2001 From: "Matthew M. Emma" Date: Fri, 7 Aug 2026 11:23:21 -0700 Subject: [PATCH] Keep tool caches out of the release ZIP The release workflow runs PHPCS and PHPUnit immediately before staging the distributable, and rsync does not honour .gitignore, so .phpunit.result.cache was copied into the v2.0.0 ZIP. Harmless but it should not ship. Co-Authored-By: Claude Opus 5 --- .distignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.distignore b/.distignore index 59f7c90..ce04715 100644 --- a/.distignore +++ b/.distignore @@ -7,6 +7,9 @@ /node_modules /vendor/bin /build +# Generated by the CI checks that run immediately before the build is staged. +.phpunit.result.cache +.phpcs.cache .distignore .editorconfig .gitattributes