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: action.yml
+10-6
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,19 @@ inputs:
9
9
UPLOAD_BINARY_PATH:
10
10
description: >
11
11
Path to the app to upload.
12
-
12
+
13
13
You can use a glob pattern to indicate variable parts of the build's file name (for example, if the app's version number or build date is in the file name).
14
14
Examples of glob patterns:
15
15
- `app-*.apk` : search for any apk starting with `app-` in workspace root directory
16
16
- `**/app-*.ipa` : search for any ipa starting with `app-` in any subdirectory of the workspace
17
17
- `{,**/}app-debug*.*` : search for any file containing `app-debug` in root the directory or in any subdirectory of the workspace
18
-
18
+
19
19
If multiple files match the provided pattern all matching files will be uploaded. The pattern should not match more than 3 files.
20
20
required: true
21
+
SOURCEMAP_FILE_PATH:
22
+
description: >
23
+
Path to the sourcemap file used to map obfuscated symbols to their original code name
24
+
required: false
21
25
USERNAME:
22
26
description: >
23
27
Username to be used for authenticated testing of the application. If provided, will override the previosly provided value.
@@ -32,22 +36,22 @@ inputs:
32
36
required: false
33
37
RELEASE_ID:
34
38
description: >
35
-
A custom ID associated with the binary being submitted, since the app version may not change very often.
39
+
A custom ID associated with the binary being submitted, since the app version may not change very often.
36
40
It is recommended that you use a unique value for this, such as the CI/CD job ID.
37
41
If not set, Data Theorem will assign the binary a release_id.
38
42
required: false
39
43
PLATFORM_VARIANT:
40
44
description: >
41
-
The variant of the platform to use for scanning; Currently, the accepted value is
45
+
The variant of the platform to use for scanning; Currently, the accepted value is
42
46
IOS_ON_MAC (scan an iOS build on an Apple Silicon Mac instead of on an iOS device, in order to exercise code paths that are specific to Macs.)
43
47
required: false
44
48
EXTERNAL_ID:
45
49
description: >
46
50
The external_id field represents your organization’s custom identifier for the app, if any.
0 commit comments