From 67333c114c96692fb8f497670f6fd3b2e61e9e2f Mon Sep 17 00:00:00 2001 From: Dasemu Date: Sat, 31 Jan 2026 08:39:48 +0100 Subject: [PATCH] fix: trigger APK build on push to main --- .gitea/workflows/build-apk.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-apk.yml b/.gitea/workflows/build-apk.yml index ac2258e..29b790c 100644 --- a/.gitea/workflows/build-apk.yml +++ b/.gitea/workflows/build-apk.yml @@ -1,6 +1,9 @@ name: Build Android APK on: + push: + branches: + - main workflow_run: workflows: ["Version Static Assets"] types: @@ -14,9 +17,10 @@ permissions: jobs: build: runs-on: ubuntu-latest - # Only run if triggered by workflow_dispatch or successful completion of version-assets + # Only run if triggered by workflow_dispatch, push to main, or successful completion of version-assets if: > github.event_name == 'workflow_dispatch' || + github.event_name == 'push' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') steps: