diff --git a/Tools/Sources/Commands/CI/ReleaseToGithub.swift b/Tools/Sources/Commands/CI/ReleaseToGithub.swift index 22b1f03c3..b1018d5c4 100644 --- a/Tools/Sources/Commands/CI/ReleaseToGithub.swift +++ b/Tools/Sources/Commands/CI/ReleaseToGithub.swift @@ -150,7 +150,7 @@ struct ReleaseToGitHub: AsyncParsableCommand { try await CI.run(.name("git"), ["reset", "--hard"]) try await CI.run(.name("git"), ["checkout", "main"]) try await CI.run(.name("git"), ["pull", "origin", "main"]) - try await CI.run(.name("git"), ["rebase", "currentBranch"]) + try await CI.run(.name("git"), ["rebase", currentBranch]) try await CI.gitPush()