diff options
| author | Claude <noreply@anthropic.com> | 2026-04-09 00:16:23 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-09 00:16:23 +0000 |
| commit | 548777a3d5b64bf9b253a11b2f40349bd775e64f (patch) | |
| tree | 531ff2e141cca65bc1eeab5b695e2841a0015b32 | |
| parent | 5e82a3afb108b53180f6e9bf1089cce4fa448cc4 (diff) | |
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
| -rw-r--r-- | .github/workflows/android.yml | 6 |
1 files changed, 3 insertions, 3 deletions
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}} |
