Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent Reupload of Releases #679

Merged
merged 10 commits into from
Jan 29, 2025
Prev Previous commit
Next Next commit
Changed_Printline
  • Loading branch information
Sascha-Stoj committed Dec 20, 2024
commit 7dc828a7dc907f414d6dee11cdab9da6d4fe5429
2 changes: 1 addition & 1 deletion cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (c DeployCmd) Run(opts DeployOpts) error {
return err
}
for _, release := range releases {
c.ui.PrintLinef("Release '%s/%s' already exists.", release.Name(), release.Version())
c.ui.PrintLinef("Release-Check for '%s/%s' has been disabled.", release.Name(), release.Version())
}
} else {
bytes, err = c.releaseUploader.UploadReleases(bytes)
Expand Down