diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e8246e3..a9acd10 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -71,10 +71,14 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') run: | zip -r meal-tracker.zip . \ - -x ".git/*" ".gitea/*" ".env" ".pytest_cache/*" \ - "__pycache__/*" "meals.db" \ - "android/.gradle/*" "android/.gradle-home/*" \ - "android/app/build/*" "android/local.properties" + -x ".git/*" ".git/" \ + -x ".gitea/*" ".gitea/" \ + -x ".env" ".pytest_cache/*" \ + -x "__pycache__/*" "meals.db" \ + -x "android/.gradle/*" "android/.gradle-home/*" \ + -x "android/app/build/*" "android/local.properties" \ + -x "android/gradle/wrapper/gradle-wrapper.jar" \ + -x "android/gradlew.bat" - name: Publish release if: startsWith(github.ref, 'refs/tags/v')