From ed669291a158dd72c7e976343b17e46bac0d02f3 Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Tue, 6 Jan 2026 15:43:33 +0000 Subject: [PATCH 1/2] chore: remove manual SVN installation from deploy workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 10up/action-wordpress-plugin-deploy action includes SVN installation, making the manual apt-get step redundant. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/deploy.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 134fced..1cc797e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,11 +19,6 @@ jobs: with: persist-credentials: false - - name: Install SVN (Subversion) - run: | - sudo apt-get update - sudo apt-get install subversion - - name: WordPress Plugin Deploy uses: 10up/action-wordpress-plugin-deploy@54bd289b8525fd23a5c365ec369185f2966529c2 # 2.3.0 env: From a001f8b7720a9b6165636c3672d0ae68273cfaf5 Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Tue, 6 Jan 2026 15:51:47 +0000 Subject: [PATCH 2/2] fix: exclude dev files from distribution archives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add missing entries to .distignore and .gitattributes: - .wordpress-org/ directory (was appearing in WordPress.org zip) - .distignore, .npmrc, .wp-env.json, .wp-env.override.json files (were appearing in GitHub release archives) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .distignore | 1 + .gitattributes | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.distignore b/.distignore index 1eecb4c..518a497 100644 --- a/.distignore +++ b/.distignore @@ -1,6 +1,7 @@ # Directories /.git/ /.github/ +/.wordpress-org/ /bin/ /node_modules/ /tests/ diff --git a/.gitattributes b/.gitattributes index e83c4a3..2547a90 100644 --- a/.gitattributes +++ b/.gitattributes @@ -19,10 +19,14 @@ /vendor export-ignore # Files +/.distignore export-ignore /.editorconfig export-ignore /.gitattributes export-ignore /.gitignore export-ignore +/.npmrc export-ignore /.phpcs.xml.dist export-ignore +/.wp-env.json export-ignore +/.wp-env.override.json export-ignore /CHANGELOG.md export-ignore /clover.xml export-ignore /composer.json export-ignore