[v10.0.x] CI: Fix broken env vars in publish-artifacts step (#71647)

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-17 11:53:51 +03:00
committed by GitHub
parent 40bcfab28e
commit 96b94e722a
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -3980,7 +3980,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:
@@ -4049,7 +4049,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:
@@ -7016,6 +7016,6 @@ kind: secret
name: delivery-bot-app-private-key
---
kind: signature
hmac: 7cd3d4407d9f8995606ccf0bdca8be8dc4c0a99ae61bacc86c129fd30180738e
hmac: e156880e265205c24cc0e202bd10be0962631fe25344e7c64c2750d5c24c1a3b
...
+1 -1
View File
@@ -561,7 +561,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"],
}