Skip to content

Commit 69446d3

Browse files
committed
Fix remote push syntax
1 parent 96323ef commit 69446d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export async function run(): Promise<void> {
8686
} else {
8787
await worktreeGit.add('.')
8888
await worktreeGit.commit(commitMessage)
89-
await worktreeGit.raw('push', remoteRepoUrl, remoteBranch)
89+
await worktreeGit.raw('push', remoteRepoUrl, `remote_swift_package:${remoteBranch}`)
9090
}
9191
} catch (error) {
9292
// Fail the workflow run if an error occurs

0 commit comments

Comments
 (0)