diff --git a/.gitea/workflows/build-android.yaml b/.gitea/workflows/build-android.yaml
index c591a13..3a1a565 100644
--- a/.gitea/workflows/build-android.yaml
+++ b/.gitea/workflows/build-android.yaml
@@ -26,13 +26,8 @@ jobs:
     # - run: flutter test
     - run: flutter build apk --debug --split-per-abi
 
-    # - name: setup go # gitea release action requires go
-    #   uses: https://github.com/actions/setup-go@v4
-    #   with:
-    #     go-version: '>=1.20.1'
-    # - name: Push APK to Releases
-    #   uses: https://gitea.com/actions/release-action@main
-    #   with:
-    #     files: |-
-    #       build/app/outputs/**.apk
-    #     api_key: '${{secrets.RELEASE_TOKEN}}'
+    - name: Upload APK as artifact
+      uses: actions/upload-artifact@v4
+      with:
+        name: app
+        path: build/app/outputs/**/*.apk
\ No newline at end of file