Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7033f36

Browse files
committedDec 3, 2024
ci: Use ZIP file name
1 parent bb30337 commit 7033f36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎ios/fastlane/Fastfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ lane :upload_ios_artifacts_to_s3 do
4949

5050
zipfile_path = File.join(Dir.pwd, zipfile_name)
5151

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])
5353

5454
next unless is_ci
5555

@@ -59,7 +59,7 @@ lane :upload_ios_artifacts_to_s3 do
5959

6060
# Tradeoff: We are "wasting" space on S3 by uploading the same archive under different name.
6161
# 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)
6363
end
6464

6565
def upload_artifact_files_to_s3(archive_path:, id:)

0 commit comments

Comments
 (0)
Please sign in to comment.