Use new GPG key when publishing (#61784)

The old key is revoked: https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/
But it's added as a manual Drone repo secret
This switches to the new gpg key that's also used to publish to apt.grafana.com
This commit is contained in:
Julien Duchesne
2023-01-19 10:30:05 -05:00
committed by GitHub
parent d8273eeb6b
commit be4c969337
2 changed files with 28 additions and 28 deletions

View File

@@ -644,9 +644,9 @@ def package_step(edition, ver_mode, variants=None):
sign_args = ' --sign'
env = {
'GRAFANA_API_KEY': from_secret('grafana_api_key'),
'GPG_PRIV_KEY': from_secret('gpg_priv_key'),
'GPG_PUB_KEY': from_secret('gpg_pub_key'),
'GPG_KEY_PASSWORD': from_secret('gpg_key_password'),
'GPG_PRIV_KEY': from_secret('packages_gpg_private_key'),
'GPG_PUB_KEY': from_secret('packages_gpg_public_key'),
'GPG_KEY_PASSWORD': from_secret('packages_gpg_passphrase'),
}
test_args = ''
else: