From 9c258b00ded5b53c4da06395c22008698911e2b0 Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Mon, 2 Dec 2024 15:26:20 -0500 Subject: [PATCH] ci: Fix relative artifacts path within Fastfile --- ios/fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index c01f0a0..9928e1e 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -6,7 +6,7 @@ before_all do end lane :upload_ios_artifacts_to_s3 do - artifacts_path = File.join(Dir.pwd, 'Sources/GutenbergKit/Gutenberg') + artifacts_path = File.join(Dir.pwd, '../Sources/GutenbergKit/Gutenberg') unless File.directory?(artifacts_path) UI.user_error!("Could not find artifacts to upload at '#{artifacts_path}'.")