Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Domain name for the released artifacts #7

Merged
merged 3 commits into from
Apr 6, 2021
Rate limit · GitHub

Access has been restricted

You have triggered a rate limit.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import PackageDescription
let latestVersion = "2.22.1"

// Domain where the release artifacts are hosted.
let hostingDomain = "<TBD>"
let hostingDomain = "releases.amplify.aws"

// Map between the available frameworks and the checksum
//
@@ -65,7 +65,7 @@ var products = frameworksToChecksum.keys.map {Product.library(name: $0, targets:

var targets = frameworksToChecksum.map { framework, checksum in
Target.binaryTarget(name: framework,
url: "\(hostingDomain)/\(framework)-\(latestVersion).zip",
url: "https://\(hostingDomain)/aws-sdk-ios/\(framework)-\(latestVersion).zip",
checksum: checksum)
}