File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ lane :upload_ios_artifacts_to_s3 do
49
49
50
50
zipfile_path = File . join ( Dir . pwd , zipfile_name )
51
51
52
- upload_artifact_files_to_s3 ( archive_path : zipfile_path , id : last_git_commit [ :commit_hash ] )
52
+ upload_artifact_files_to_s3 ( archive_path : zipfile_name , id : last_git_commit [ :commit_hash ] )
53
53
54
54
next unless is_ci
55
55
@@ -59,7 +59,7 @@ lane :upload_ios_artifacts_to_s3 do
59
59
60
60
# Tradeoff: We are "wasting" space on S3 by uploading the same archive under different name.
61
61
# What we get in return is a 1-1 correspondency between archive and podspec, which keeps the setup simpler.
62
- upload_artifact_files_to_s3 ( archive_path : zipfile_path , id : tag )
62
+ upload_artifact_files_to_s3 ( archive_path : zipfile_name , id : tag )
63
63
end
64
64
65
65
def upload_artifact_files_to_s3 ( archive_path :, id :)
You can’t perform that action at this time.
0 commit comments