Skip to content

Commit 8064d94

Browse files
committed
chore: distribute ios app with firebase
1 parent 385321b commit 8064d94

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/firebase-deploy.yml

+23
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,26 @@ jobs:
7171
--groups "leatherhood" \
7272
--token "${{ secrets.FIREBASE_TOKEN }}"
7373
shell: bash
74+
75+
- name: Build iOS app
76+
working-directory: ./apps/mobile
77+
run: eas build --platform ios --profile=simulator-dev --non-interactive --no-wait --local --output ${{ github.workspace }}/app-release.ipa
78+
79+
- name: Upload IPA artifact
80+
uses: actions/upload-artifact@v4
81+
with:
82+
name: app-release
83+
path: ${{ github.workspace }}/app-release.ipa
84+
85+
- name: Install Firebase CLI
86+
run: npm install -g firebase-tools
87+
88+
- name: Firebase App Distribution
89+
env:
90+
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
91+
run: |
92+
firebase appdistribution:distribute ${{ github.workspace }}/app-release.ipa \
93+
--app "1:915379517791:ios:ecfa47ab5ee5f256789eea" \
94+
--groups "leatherhood" \
95+
--token "${{ secrets.FIREBASE_TOKEN }}"
96+
shell: bash

0 commit comments

Comments
 (0)