We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967fe7e commit cf6ce7dCopy full SHA for cf6ce7d
.github/workflows/android_cd.yml
@@ -76,7 +76,12 @@ jobs:
76
77
# Install Firebase CLI
78
- name: Install Firebase CLI
79
- run: curl -sL https://firebase.tools | bash
+ run: npm install -g firebase-tools
80
+
81
+ # Firebase Authentication 체크
82
+ - name: Check Firebase Authentication
83
+ run: |
84
+ firebase projects:list || (echo "❌ Firebase 인증 실패!" && exit 1)
85
86
# Firebase App Distribution
87
- name: Upload AAB to Firebase App Distribution
0 commit comments