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:
Dimitris Sotirakis
2023-07-13 11:12:15 +03:00
committed by GitHub
parent e045860fbf
commit fd90737884
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -563,7 +563,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"],
}