Linux Packages: Handle publish to beta (#57528) (#58044)

Uses the feature added here: https://github.com/grafana/deployment_tools/pull/46301
When a version is named "beta", it will be distributed in the beta distribution, rather than in stable

Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com>
(cherry picked from commit c46a4a0b26)

Co-authored-by: Julien Duchesne <julien.duchesne@grafana.com>
This commit is contained in:
Dimitris Sotirakis
2022-11-02 14:17:44 +02:00
committed by GitHub
co-authored by Julien Duchesne
parent 1ac0c03a1d
commit 551c4aa562
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1062,7 +1062,7 @@ def publish_linux_packages_step(edition, package_manager='deb'):
'secret_access_key': from_secret('packages_secret_access_key'),
'service_account_json': from_secret('packages_service_account'),
'target_bucket': 'grafana-packages',
'deb_distribution': 'stable',
'deb_distribution': 'auto',
'gpg_passphrase': from_secret('packages_gpg_passphrase'),
'gpg_public_key': from_secret('packages_gpg_public_key'),
'gpg_private_key': from_secret('packages_gpg_private_key'),