You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
# Emerge upload action - DEPRECATED
1
+
# Emerge upload action - (iOS future support only)
2
2
3
3
> [!IMPORTANT]
4
-
> Emerge will no longer support this Github action and recommends using the [Emerge Fastlane plugin](https://docs.emergetools.com/docs/fastlane)or the [Emerge Gradle plugin](https://docs.emergetools.com/docs/gradle-plugin) as primary integration points on iOS/Android respectively.
4
+
> This action is no longer maintained for Android usage (please use the [Emerge Gradle plugin](https://docs.emergetools.com/docs/gradle-plugin) instead). As for iOS, if you don't have an existing CI setup or already use fastlane, we strongly recommend you use the [Emerge Fastlane plugin](https://docs.emergetools.com/docs/fastlane).
5
5
> If using the Fastlane/Gradle plugins, the GitHub action is unnecessary, as all upload functionality is built into the respective integrations.
6
6
7
7
Action to upload your build directly to Emerge for analysis.
@@ -36,21 +36,21 @@ name: Your workflow
36
36
37
37
on:
38
38
push:
39
-
branches: [main]
39
+
branches: [main]
40
40
pull_request:
41
-
branches: [main]
41
+
branches: [main]
42
42
43
43
jobs:
44
44
build:
45
45
runs-on: ubuntu-latest
46
46
steps:
47
47
- uses: actions/checkout@v2
48
-
- name: Generate Android release bundle
49
-
run: ./gradlew bundleRelease
48
+
- name: Generate iOS archive build
49
+
run: # generate release build, e.g. with xcodebuild
0 commit comments