Skip to content

Commit

Permalink
Fix remote push syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Dec 12, 2024
1 parent 96323ef commit 69446d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export async function run(): Promise<void> {
} else {
await worktreeGit.add('.')
await worktreeGit.commit(commitMessage)
await worktreeGit.raw('push', remoteRepoUrl, remoteBranch)
await worktreeGit.raw('push', remoteRepoUrl, `remote_swift_package:${remoteBranch}`)
}
} catch (error) {
// Fail the workflow run if an error occurs
Expand Down

0 comments on commit 69446d3

Please sign in to comment.