From 4cc681d4a26e42868fc491cad3a61087e698dcd0 Mon Sep 17 00:00:00 2001 From: Yim Lee Date: Wed, 10 May 2023 16:44:16 -0700 Subject: [PATCH] CI setup Motivation: swift-openapi-runtime is private, so it can't be accessed anonymously and CI fails. Modifications: - Change to use SSH git URL for swift-openapi-runtime - Set up SSH access in CI temporarily until swift-openapi-runtime becomes public. --- Package.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 70fae98..24332a5 100644 --- a/Package.swift +++ b/Package.swift @@ -27,7 +27,9 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.0")), + // FIXME: swift-openapi-runtime is private, so we can't access it anonymously yet + //.package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.0")), + .package(url: "git@github.com:apple/swift-openapi-runtime.git", .upToNextMinor(from: "0.1.0")), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), ], targets: [