Skip to content

Commit

Permalink
Fix syntax error (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
divolgin authored Oct 29, 2024
1 parent 93fe3e9 commit 475a8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dagger/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (r *Replicated) Release(
WithExec([]string{"git", "checkout", "-b", releaseBranchName}).
WithExec([]string{"git", "add", "pkg/version/build.go"}).
WithExec([]string{"git", "commit", "-m", fmt.Sprintf("Set version to %d.%d.%d", major, minor, patch)}).
WithExec([]string{"git", "push", "dagger", releaseBranchName}).
WithExec([]string{"git", "push", "dagger", releaseBranchName})
_, err = gitCommitContainer.Stdout(ctx)
if err != nil {
return err
Expand Down

0 comments on commit 475a8e6

Please sign in to comment.