Skip to content

Commit 82b8fd1

Browse files
committed
feat: Add Firebase App ID and Token to GitHub Actions workflow
This commit introduces two new environment variables, `FIREBASE_APP_ID` and `FIREBASE_TOKEN`, to the Android GitHub Actions workflow. These variables will be sourced from GitHub secrets and are likely intended for use in Firebase integration, such as App Distribution.
1 parent a327e42 commit 82b8fd1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ env:
1414
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
1515
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
1616
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
17+
FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }}
18+
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
1719

1820
jobs:
1921
setup:

0 commit comments

Comments
 (0)