CI: use the base64 key in the windows installer steps (#72372)

use the base64 key in the windows installer steps
This commit is contained in:
Kevin Minehart 2023-07-26 08:59:25 -05:00 committed by GitHub
parent 34ee3b09de
commit 0c2b2219bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -3328,7 +3328,7 @@ steps:
- publish-linux-packages-rpm - publish-linux-packages-rpm
environment: environment:
GCP_KEY: GCP_KEY:
from_secret: gcp_grafanauploads from_secret: gcp_grafanauploads_base64
GRAFANA_COM_API_KEY: GRAFANA_COM_API_KEY:
from_secret: grafana_api_key from_secret: grafana_api_key
image: grafana/grafana-ci-deploy:1.3.3 image: grafana/grafana-ci-deploy:1.3.3
@ -4970,6 +4970,6 @@ kind: secret
name: delivery-bot-app-private-key name: delivery-bot-app-private-key
--- ---
kind: signature kind: signature
hmac: 3f94603ccb6df539771470e23415094c86d606d5fd823409cd685346de3742e0 hmac: b3a378789d0a84f8eedd22567d2ce7609cc9c079bdd58ea8e71d0d9456c423e8
... ...

View File

@ -1222,7 +1222,7 @@ def publish_grafanacom_step(ver_mode):
], ],
"environment": { "environment": {
"GRAFANA_COM_API_KEY": from_secret("grafana_api_key"), "GRAFANA_COM_API_KEY": from_secret("grafana_api_key"),
"GCP_KEY": from_secret(gcp_grafanauploads), "GCP_KEY": from_secret(gcp_grafanauploads_base64),
}, },
"commands": [ "commands": [
cmd, cmd,