removing unneeded files from repo and plugin
All checks were successful
Create Release / build (push) Successful in 3s

This commit is contained in:
2025-09-10 06:02:50 -07:00
parent a160fe3964
commit cec5daa0b0
6 changed files with 343 additions and 47 deletions

View File

@@ -42,7 +42,23 @@ jobs:
- name: Create plugin zip
run: |
mkdir -p /tmp/wp-digital-download
rsync -av --exclude=".git" --exclude=".gitea" --exclude=".playwright-mcp" --exclude="build" . /tmp/wp-digital-download/
rsync -av \
--exclude=".git" \
--exclude=".gitea" \
--exclude=".gitignore" \
--exclude=".playwright-mcp" \
--exclude="build" \
--exclude="node_modules" \
--exclude="tests" \
--exclude="test" \
--exclude="CLAUDE.md" \
--exclude="*.json" \
--exclude="*.log" \
--exclude=".env*" \
--exclude="*.bak" \
--exclude="*.tmp" \
--exclude="*~" \
. /tmp/wp-digital-download/
cd /tmp
zip -r $GITEA_WORK_DIR/wp-digital-download.zip wp-digital-download