Skip to content

Commit 95abef7

Browse files
authored
chore: fix release script usage of docker command (#1056)
1 parent 75bf115 commit 95abef7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release/release.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ async function main() {
252252
// Update Docker version
253253
//
254254
console.log("Build and push a container image".blue);
255-
docker(`docker build -t scaleway/cli:v${newVersion} .`);
256-
docker(`docker push scaleway/cli:v${newVersion}`);
255+
docker("build", "-t", `scaleway/cli:v${newVersion}`, ".");
256+
docker("push", `scaleway/cli:v${newVersion}`);
257257

258258
//
259259
// Creating post release commit

0 commit comments

Comments
 (0)