From 548777a3d5b64bf9b253a11b2f40349bd775e64f Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 9 Apr 2026 00:16:23 +0000 Subject: fix(ci): trigger workflow on master, not main Repo default branch is master; workflow was targeting main so CI never ran and Firebase distribution never fired. https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX --- .github/workflows/android.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 2c28410..6dd744d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -2,9 +2,9 @@ name: Android CI/CD on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] jobs: build: @@ -36,7 +36,7 @@ jobs: android-app/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk - name: upload artifact to Firebase App Distribution - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' uses: wzieba/Firebase-Distribution-Github-Action@v1 with: appId: ${{secrets.FIREBASE_APP_ID}} -- cgit v1.2.3