Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/promote.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ func setupPromoteCommand() *cobraext.Command {

func promoteCommandAction(cmd *cobra.Command, _ []string) error {
cmd.Println("Promote packages")
cmd.Println("DEPRECATED: Packages stored in the Package Storage v2 won't require to be promoted. This command will be removed soon. README: https://github.com/elastic/elastic-package/blob/main/docs/howto/use_package_storage_v2.md")

// Setup GitHub
err := github.EnsureAuthConfigured()
Expand Down
1 change: 1 addition & 0 deletions cmd/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ func setupPublishCommand() *cobraext.Command {

func publishCommandAction(cmd *cobra.Command, args []string) error {
cmd.Println("Publish the package")
cmd.Println("DEPRECATED: Package candidates to the Package Storage v2 will be published using Jenkins jobs. This command will be removed soon. README: https://github.com/elastic/elastic-package/blob/main/docs/howto/use_package_storage_v2.md")

fork, err := cmd.Flags().GetBool(cobraext.ForkFlagName)
if err != nil {
Expand Down