Release should work
All checks were successful
Build APK / build (push) Successful in 12m38s
Build APK / release (push) Successful in 5s

This commit is contained in:
2026-04-25 12:36:53 +02:00
parent 3e8cc0b9c8
commit b1d1dfaab8

View File

@@ -49,3 +49,23 @@ jobs:
with: with:
name: app-release-apk name: app-release-apk
path: apk/android/app/build/outputs/apk/release/app-release.apk 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 }}