Packaging: Use base64 key (#61802)

The tools in this repo need base64 but not in most other tools. I had to revert the change I made to the key
I created another key for base64 that we can use here
Follow-up to https://github.com/grafana/grafana/pull/61784
This commit is contained in:
Julien Duchesne 2023-01-19 17:03:19 -05:00 committed by GitHub
parent 9223fe5ca8
commit efb98bcb99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -6385,13 +6385,13 @@ kind: secret
name: azure_tenant
---
get:
name: public-key
name: public-key-b64
path: infra/data/ci/packages-publish/gpg
kind: secret
name: packages_gpg_public_key
---
get:
name: private-key
name: private-key-b64
path: infra/data/ci/packages-publish/gpg
kind: secret
name: packages_gpg_private_key
@ -6439,6 +6439,6 @@ kind: secret
name: aws_secret_access_key
---
kind: signature
hmac: b00c47739d5af79f368c649765e1ac22d89ef4e4539166ad54650642ffc163e0
hmac: 7f74588652e48e6c51cd54fb9973289c144f09d2f232fe30fe66b5d51b9b317e
...

View File

@ -52,12 +52,12 @@ def secrets():
vault_secret(
'packages_gpg_public_key',
'infra/data/ci/packages-publish/gpg',
'public-key',
'public-key-b64',
),
vault_secret(
'packages_gpg_private_key',
'infra/data/ci/packages-publish/gpg',
'private-key',
'private-key-b64',
),
vault_secret(
'packages_gpg_passphrase',