From 9a0651e2218bc36950048b7467249e5a339e1f28 Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Mon, 17 Aug 2026 13:08:08 -0500 Subject: [PATCH] Keep .github out of the release tarball The workflow directory added in #11 is tracked, and the release asset is a git archive of the tag, so without an export-ignore it unpacks into the web root as lib/plugins/.github/workflows/tests.yml. That is the same reason README.md, LICENSE and tests/ are already excluded: the installer untars this straight into a directory the web server serves. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_017aBSWrDArXHTpKWkkN27LR --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 39bc8de..21e2e92 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,3 +5,4 @@ LICENSE export-ignore .gitattributes export-ignore make-release.sh export-ignore tests/ export-ignore +.github/ export-ignore