Skip to content

Commit 55b74d2

Browse files
committed
chore: distribute ios app with firebase
1 parent 8064d94 commit 55b74d2

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

.github/workflows/firebase-deploy.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ jobs:
5858
with:
5959
name: app-release
6060
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
6168

6269
- name: Install Firebase CLI
6370
run: npm install -g firebase-tools
@@ -69,7 +76,8 @@ jobs:
6976
firebase appdistribution:distribute ${{ github.workspace }}/app-release.apk \
7077
--app "1:915379517791:android:d4e7cb446a612f8c789eea" \
7178
--groups "leatherhood" \
72-
--token "${{ secrets.FIREBASE_TOKEN }}"
79+
--token "${{ secrets.FIREBASE_TOKEN }}" \
80+
--release-notes "${{ steps.release.outputs.release_notes }}"
7381
shell: bash
7482

7583
- name: Build iOS app
@@ -92,5 +100,6 @@ jobs:
92100
firebase appdistribution:distribute ${{ github.workspace }}/app-release.ipa \
93101
--app "1:915379517791:ios:ecfa47ab5ee5f256789eea" \
94102
--groups "leatherhood" \
95-
--token "${{ secrets.FIREBASE_TOKEN }}"
103+
--token "${{ secrets.FIREBASE_TOKEN }}" \
104+
--release-notes "${{ steps.release.outputs.release_notes }}"
96105
shell: bash

apps/mobile/android/fastlane/Fastfile

+14
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,18 @@ platform :android do
1212
release_notes: "New build available"
1313
)
1414
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
1529
end

0 commit comments

Comments
 (0)