File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 71
71
--groups "leatherhood" \
72
72
--token "${{ secrets.FIREBASE_TOKEN }}"
73
73
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
You can’t perform that action at this time.
0 commit comments