Skip to content

Commit 04d1ae8

Browse files
committed
🧱 ci: fix bug in fastfile
1 parent a4923ff commit 04d1ae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎SNUTT/fastlane/Fastfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ platform :ios do
383383
api_key: api_key,
384384
app_identifier: app_config.bundle_id,
385385
app_version: marketing_version,
386-
build_number: build_number,
386+
build_number: build_number.to_s,
387387
skip_screenshots: true,
388388
skip_metadata: true,
389389
precheck_include_in_app_purchases: false,
@@ -402,7 +402,7 @@ platform :ios do
402402
api_key: api_key,
403403
app_identifier: app_config.bundle_id,
404404
app_version: marketing_version,
405-
build_number: build_number,
405+
build_number: build_number.to_s,
406406
skip_waiting_for_build_processing: true
407407
)
408408
end

0 commit comments

Comments
 (0)