mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix verify_release_pipeline script execution (#69191)
* fix verify_release_pipeline script execution * forgot to run make drone
This commit is contained in:
parent
731efdf7f4
commit
68fe1e1cb0
@ -4467,7 +4467,7 @@ steps:
|
||||
- apt-get update && apt-get install -yq gettext
|
||||
- printenv GCP_KEY | base64 -d > /tmp/key.json
|
||||
- gcloud auth activate-service-account --key-file=/tmp/key.json
|
||||
- VERSION=${DRONE_TAG} ./scripts/list-release-artifacts.sh | xargs -n1 gsutil stat
|
||||
- ./scripts/list-release-artifacts.sh ${DRONE_TAG} | xargs -n1 gsutil stat
|
||||
depends_on:
|
||||
- clone
|
||||
environment:
|
||||
@ -4614,7 +4614,7 @@ steps:
|
||||
- apt-get update && apt-get install -yq gettext
|
||||
- printenv GCP_KEY | base64 -d > /tmp/key.json
|
||||
- gcloud auth activate-service-account --key-file=/tmp/key.json
|
||||
- VERSION=${DRONE_TAG} ./scripts/list-release-artifacts.sh | xargs -n1 gsutil stat
|
||||
- ./scripts/list-release-artifacts.sh ${DRONE_TAG} | xargs -n1 gsutil stat
|
||||
depends_on:
|
||||
- clone
|
||||
environment:
|
||||
@ -7200,6 +7200,6 @@ kind: secret
|
||||
name: delivery-bot-app-private-key
|
||||
---
|
||||
kind: signature
|
||||
hmac: f6613d5eb9f3d8e308d4c4b55bd980027b1756d3834f0db99f77e6180cc042c6
|
||||
hmac: d518288df51a41148e1fb302b80d598add4104f35588fd05e0fc6a135b45dda1
|
||||
|
||||
...
|
||||
|
@ -826,7 +826,7 @@ def verify_release_pipeline(
|
||||
"apt-get update && apt-get install -yq gettext",
|
||||
"printenv GCP_KEY | base64 -d > /tmp/key.json",
|
||||
"gcloud auth activate-service-account --key-file=/tmp/key.json",
|
||||
"VERSION={} ./scripts/list-release-artifacts.sh | xargs -n1 gsutil stat".format(version),
|
||||
"./scripts/list-release-artifacts.sh {} | xargs -n1 gsutil stat".format(version),
|
||||
],
|
||||
}
|
||||
return pipeline(
|
||||
|
Loading…
Reference in New Issue
Block a user