Skip to content

Commit

Permalink
feat: support new release process
Browse files Browse the repository at this point in the history
  • Loading branch information
pasha-codefresh committed Dec 6, 2023
1 parent da4f96e commit d5dd4df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8-2023.12.06-7e551467f
2.8-2023.12.06-da4f96e57
File renamed without changes.
6 changes: 5 additions & 1 deletion hack/release/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,9 @@ func release() error {
if err := cmd.Run(); err != nil {
return err
}
return moveChangelog()
err = moveChangelog()
if err != nil {
return err
}
return exec.Command("git", "push", "origin", "--delete", release).Run()
}

0 comments on commit d5dd4df

Please sign in to comment.