Update automation to fix folder mess with updates and notes

This commit is contained in:
2025-05-20 14:29:59 -07:00
parent 1955b14ac5
commit 9e1d8b8684
2 changed files with 13 additions and 16 deletions

View File

@@ -35,8 +35,10 @@ jobs:
- name: Create plugin zip
run: |
mkdir -p build
zip -r build/fourthwall-store-embed.zip . -x ".git/*" ".gitea/*" "build/*" "*.git*"
mkdir -p /tmp/fourthwall-store-embed
rsync -av --exclude=".git" --exclude=".gitea" --exclude="build" . /tmp/fourthwall-store-embed/
cd /tmp
zip -r $GITEA_WORK_DIR/fourthwall-store-embed.zip fourthwall-store-embed
- name: Upload zip to release
uses: actions/upload-release-asset@v1