[v9.5.x] CI: Fix broken env vars in publish-artifacts step (#71646)

CI: Fix broken env vars in publish-artifacts step (#71471)

Fix env vars

(cherry picked from commit 64d2ff03c80c807c03390f63ba1834c5605fc96d)

# Conflicts:
#	.drone.yml
(cherry picked from commit fd90737884)

# Conflicts:
#	.drone.yml
This commit is contained in:
Dimitris Sotirakis
2023-07-14 09:03:53 -03:00
committed by GitHub
parent 3ee1f7ac83
commit b669afdfda
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -3909,7 +3909,7 @@ steps:
image: golang:1.20.6
name: compile-build-cmd
- 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
environment:
@@ -3978,7 +3978,7 @@ steps:
image: golang:1.20.6
name: compile-build-cmd
- 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
environment:
@@ -6885,6 +6885,6 @@ kind: secret
name: github_token
---
kind: signature
hmac: 35192e2a51d31c9468629bcd4d72e2bc0840dcc81d770e24bc9dd57fb24ec00f
hmac: 37c2d1623b9816fac3e31dc9c03125c90c421702730ea00652459e6be03a2c8a
...
+1 -1
View File
@@ -558,7 +558,7 @@ def publish_artifacts_step():
"PRERELEASE_BUCKET": from_secret("prerelease_bucket"),
},
"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"],
}