Skip to content

Commit 9b1d0d8

Browse files
committed
chore(SwiftPackageIndex): remove string interpolation from dependency URL
1 parent cb5daee commit 9b1d0d8

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ jobs:
4949
uses: SwiftyLab/ci/.github/workflows/swift-package.yml@main
5050
secrets: inherit
5151
with:
52-
codecov-swift: '5.7'
53-
codecov-os: ubuntu-latest
5452
matrix: >
5553
{
5654
"include": [

Package.swift

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ var settings: [SwiftSetting] = {
5151
return settings
5252
}()
5353

54-
let github = "https://github.com"
55-
let appleGitHub = "\(github)/apple"
56-
5754
let package = Package(
5855
name: "AsyncObjects",
5956
platforms: [
@@ -66,10 +63,10 @@ let package = Package(
6663
.library(name: "AsyncObjects", targets: ["AsyncObjects"]),
6764
],
6865
dependencies: [
69-
.package(url: "\(appleGitHub)/swift-collections.git", from: "1.0.0"),
70-
.package(url: "\(appleGitHub)/swift-docc-plugin", from: "1.0.0"),
71-
.package(url: "\(appleGitHub)/swift-format", from: "0.50700.0"),
72-
.package(url: "\(appleGitHub)/swift-log.git", from: "1.0.0"),
66+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.0"),
67+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
68+
.package(url: "https://github.com/apple/swift-format", from: "0.50700.0"),
69+
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
7370
],
7471
targets: [
7572
.target(name: "AsyncObjects", dependencies: dependencies, swiftSettings: settings),

0 commit comments

Comments
 (0)