summaryrefslogtreecommitdiff
path: root/.github/workflows/android.yml
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-13 23:05:43 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-13 23:05:43 +0000
commitae89af779d1b02b492136122f29e7d91e66616cb (patch)
tree5c8ca6b875398cb04d0293ad9d21433a06f32ab9 /.github/workflows/android.yml
parent7f89b6d4d0bc4996c0f1802f81abcc23ce47c221 (diff)
fix: update CI/CD workflow to trigger on master branch
Diffstat (limited to '.github/workflows/android.yml')
-rw-r--r--.github/workflows/android.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index ee85881..fcc69b1 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:
@@ -34,7 +34,7 @@ jobs:
path: android-app/app/build/outputs/apk/debug/app-debug.apk
- name: upload artifact to Firebase App Distribution
- if: github.ref == 'refs/heads/main'
+ if: github.ref == 'refs/heads/master'
uses: willydouglas/firebase-distribution-action@v1
with:
appId: ${{secrets.FIREBASE_APP_ID}}