Skip to content

Commit

Permalink
Prefix XCFramework files on S3 with 'gutenberg-mobile/'
Browse files Browse the repository at this point in the history
This will make it easier to browse the bucket.
See #5769 (comment)
  • Loading branch information
mokagio committed Jun 7, 2023
1 parent b1abb88 commit 57f9dd1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ios-xcframework/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ end
# rubocop:enable Metrics/AbcSize
# rubocop:enable Metrics/MethodLength

def upload_to_a8c_s3(file:, name_on_s3:, skip_if_exists: false)
def upload_to_a8c_s3(file:, name_on_s3:, prefix: 'gutenberg-mobile', skip_if_exists: false)
upload_to_s3(
bucket: 'a8c-apps-public-artifacts',
key: name_on_s3,
key: "#{prefix}/#{name_on_s3}",
file: file,
auto_prefix: false,
skip_if_exists: skip_if_exists
Expand Down
2 changes: 1 addition & 1 deletion ios-xcframework/podspec.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.swift_version = '<%= swift_version %>'

s.source = {
http: "https://cdn.a8c-ci.services/Gutenberg-<%= id %>.tar.gz"
http: "https://cdn.a8c-ci.services/gutenberg-mobile/Gutenberg-<%= id %>.tar.gz"
}

s.vendored_frameworks = [
Expand Down

0 comments on commit 57f9dd1

Please sign in to comment.