From b1d1dfaab8353cbf0e749be07f4cc881337958ac Mon Sep 17 00:00:00 2001 From: Aran Roig Date: Sat, 25 Apr 2026 12:36:53 +0200 Subject: [PATCH] Release should work --- .gitea/workflows/build-apk.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-apk.yml b/.gitea/workflows/build-apk.yml index 6aa972b..b327abf 100644 --- a/.gitea/workflows/build-apk.yml +++ b/.gitea/workflows/build-apk.yml @@ -48,4 +48,24 @@ jobs: uses: actions/upload-artifact@v3 with: name: app-release-apk - path: apk/android/app/build/outputs/apk/release/app-release.apk \ No newline at end of file + path: apk/android/app/build/outputs/apk/release/app-release.apk + release: + runs-on: docker + needs: [build] + steps: + - name: Download Web Artifact + uses: actions/download-artifact@v3 + with: + name: app-release-apk + path: dist + + - name: Create Release + uses: https://gitea.com/actions/gitea-release-action@v1 + with: + tag_name: latest + name: Latest Build + overwrite_files: true + files: | + dist/app-release-apk.zip + env: + GITEA_TOKEN: ${{ secrets.GITEA }} \ No newline at end of file