Add package publishing step (#53553)

Issue: https://github.com/grafana/deployment_tools/issues/36289
Based on the new image: https://github.com/grafana/deployment_tools/tree/master/docker/package-publish
This is a new step meant to replace the store-packages command. It will greatly improve publishing performace and it publishes to a common repository shared with all Grafana products

Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com>
This commit is contained in:
Julien Duchesne
2022-09-01 07:13:44 -04:00
committed by GitHub
co-authored by dsotirakis
parent be6b8d91eb
commit 67f1778bf1
4 changed files with 112 additions and 1 deletions
+3
View File
@@ -42,6 +42,7 @@ load(
'upload_cdn_step',
'verify_gen_cue_step',
'publish_images_step',
'publish_linux_packages_step',
'trigger_oss',
'artifacts_page_step',
'compile_build_cmd',
@@ -394,6 +395,7 @@ def publish_packages_pipeline():
gen_version_step(ver_mode='release'),
publish_packages_step(edition='oss', ver_mode='release'),
publish_grafanacom_step(edition='oss', ver_mode='release'),
publish_linux_packages_step(edition='oss'),
]
enterprise_steps = [
@@ -401,6 +403,7 @@ def publish_packages_pipeline():
gen_version_step(ver_mode='release'),
publish_packages_step(edition='enterprise', ver_mode='release'),
publish_grafanacom_step(edition='enterprise', ver_mode='release'),
publish_linux_packages_step(edition='enterprise'),
]
deps = [
'publish-artifacts-public',