[v9.5.x] CI: use base64 key in windows installer build step (#72453)

CI: use base64 key in windows installer build step (#72413)

use base64 key

(cherry picked from commit b019ef9a89)
This commit is contained in:
Kevin Minehart
2023-07-27 16:52:28 +03:00
committed by GitHub
parent d38393f32d
commit 558956f3d8
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -2620,7 +2620,7 @@ steps:
- windows-init
environment:
GCP_KEY:
from_secret: gcp_key
from_secret: gcp_grafanauploads_base64
GITHUB_TOKEN:
from_secret: github_token
PRERELEASE_BUCKET:
@@ -3221,7 +3221,7 @@ steps:
- windows-init
environment:
GCP_KEY:
from_secret: gcp_key
from_secret: gcp_grafanauploads_base64
GITHUB_TOKEN:
from_secret: github_token
PRERELEASE_BUCKET:
@@ -3849,7 +3849,7 @@ steps:
- windows-init
environment:
GCP_KEY:
from_secret: gcp_key
from_secret: gcp_grafanauploads_base64
GITHUB_TOKEN:
from_secret: github_token
PRERELEASE_BUCKET:
@@ -4489,6 +4489,6 @@ kind: secret
name: github_token
---
kind: signature
hmac: 90c462bab3b29c0947fe812d80e10256ebd7de02abee6bc628cfeeceae6dce65
hmac: a9ced789528f5c4d3beaa2953dfb530209303af99278a20ee2246db6e8cbbd75
...
+1 -1
View File
@@ -1290,7 +1290,7 @@ def get_windows_steps(ver_mode, bucket = "%PRERELEASE_BUCKET%"):
"windows-init",
],
"environment": {
"GCP_KEY": from_secret("gcp_key"),
"GCP_KEY": from_secret(gcp_grafanauploads_base64),
"PRERELEASE_BUCKET": from_secret(prerelease_bucket),
"GITHUB_TOKEN": from_secret("github_token"),
},