-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFastfile
More file actions
31 lines (30 loc) · 864 Bytes
/
Fastfile
File metadata and controls
31 lines (30 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# upload symbols from...
lane :upload_dsyms do |options|
upload_symbols_to_datadog(
api_key: "datadog-api-key",
dsym_paths: [
'assets/Themoji.dSYM.zip', # ...a zip file...
'assets/Themoji/' # ...or from a folder
# NOTE: these examples are actually empty in order to keep the repo at minimum size
],
dry_run: options[:dry_run],
throw_errors: options[:throw_errors]
)
end
# download_dsyms action feeds dsym_paths automatically
lane :upload_dsym_with_download_dsyms do |options|
app_store_connect_api_key(
key_id: "key_id",
issuer_id: "issuer_id",
key_filepath: "key_file_path.p8"
)
download_dsyms(
app_identifier: 'app.id.entifier',
version: 'latest'
)
upload_symbols_to_datadog(
api_key: "datadog-api-key",
dry_run: options[:dry_run],
throw_errors: options[:throw_errors]
)
end