mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
CI: Fix broken env vars in publish-artifacts step (#71471)
Fix env vars
(cherry picked from commit 64d2ff03c8
)
# Conflicts:
# .drone.yml
This commit is contained in:
parent
e045860fbf
commit
fd90737884
@ -4250,7 +4250,7 @@ steps:
|
|||||||
image: golang:1.20.6
|
image: golang:1.20.6
|
||||||
name: compile-build-cmd
|
name: compile-build-cmd
|
||||||
- commands:
|
- commands:
|
||||||
- ./bin/build artifacts packages --tag $${{DRONE_TAG}} --src-bucket $${{PRERELEASE_BUCKET}}
|
- ./bin/build artifacts packages --tag $${DRONE_TAG} --src-bucket $${PRERELEASE_BUCKET}
|
||||||
depends_on:
|
depends_on:
|
||||||
- compile-build-cmd
|
- compile-build-cmd
|
||||||
environment:
|
environment:
|
||||||
@ -4319,7 +4319,7 @@ steps:
|
|||||||
image: golang:1.20.6
|
image: golang:1.20.6
|
||||||
name: compile-build-cmd
|
name: compile-build-cmd
|
||||||
- commands:
|
- commands:
|
||||||
- ./bin/build artifacts packages --tag $${{DRONE_TAG}} --src-bucket $${{PRERELEASE_BUCKET}}
|
- ./bin/build artifacts packages --tag $${DRONE_TAG} --src-bucket $${PRERELEASE_BUCKET}
|
||||||
depends_on:
|
depends_on:
|
||||||
- compile-build-cmd
|
- compile-build-cmd
|
||||||
environment:
|
environment:
|
||||||
@ -7413,6 +7413,6 @@ kind: secret
|
|||||||
name: delivery-bot-app-private-key
|
name: delivery-bot-app-private-key
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 99d1c7416eed610594287de748406afc9cd73da82fb0f09907401ade2c861f1f
|
hmac: 0d2d6275d62dea9c46f950ecd6a94c8310f760b2b47347a106f122578d99812d
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -563,7 +563,7 @@ def publish_artifacts_step():
|
|||||||
"PRERELEASE_BUCKET": from_secret("prerelease_bucket"),
|
"PRERELEASE_BUCKET": from_secret("prerelease_bucket"),
|
||||||
},
|
},
|
||||||
"commands": [
|
"commands": [
|
||||||
"./bin/build artifacts packages --tag $${{DRONE_TAG}} --src-bucket $${{PRERELEASE_BUCKET}}",
|
"./bin/build artifacts packages --tag $${DRONE_TAG} --src-bucket $${PRERELEASE_BUCKET}",
|
||||||
],
|
],
|
||||||
"depends_on": ["compile-build-cmd"],
|
"depends_on": ["compile-build-cmd"],
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user