File tree 2 files changed +25
-2
lines changed
apps/mobile/android/fastlane
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 58
58
with :
59
59
name : app-release
60
60
path : ${{ github.workspace }}/app-release.apk
61
+ - name : Run Release Please
62
+ id : release
63
+ uses : google-github-actions/release-please-action@v3
64
+ with :
65
+ token : ${{ secrets.GITHUB_TOKEN }}
66
+ release-type : node
67
+ package-name : leatherwalletmobile
61
68
62
69
- name : Install Firebase CLI
63
70
run : npm install -g firebase-tools
69
76
firebase appdistribution:distribute ${{ github.workspace }}/app-release.apk \
70
77
--app "1:915379517791:android:d4e7cb446a612f8c789eea" \
71
78
--groups "leatherhood" \
72
- --token "${{ secrets.FIREBASE_TOKEN }}"
79
+ --token "${{ secrets.FIREBASE_TOKEN }}" \
80
+ --release-notes "${{ steps.release.outputs.release_notes }}"
73
81
shell : bash
74
82
75
83
- name : Build iOS app
92
100
firebase appdistribution:distribute ${{ github.workspace }}/app-release.ipa \
93
101
--app "1:915379517791:ios:ecfa47ab5ee5f256789eea" \
94
102
--groups "leatherhood" \
95
- --token "${{ secrets.FIREBASE_TOKEN }}"
103
+ --token "${{ secrets.FIREBASE_TOKEN }}" \
104
+ --release-notes "${{ steps.release.outputs.release_notes }}"
96
105
shell : bash
Original file line number Diff line number Diff line change @@ -12,4 +12,18 @@ platform :android do
12
12
release_notes : "New build available"
13
13
)
14
14
end
15
+
16
+ lane :build do
17
+ gym (
18
+ workspace : "YourApp.xcworkspace" ,
19
+ scheme : "leatherwalletmobile" ,
20
+ export_method : "app-store" ,
21
+ export_options : {
22
+ provisioningProfiles : {
23
+ "io.leather.mobilewallet" => "leatherhood"
24
+ }
25
+ } ,
26
+ xcargs : "-allowProvisioningUpdates"
27
+ )
28
+ end
15
29
end
You can’t perform that action at this time.
0 commit comments