We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75bf115 commit 95abef7Copy full SHA for 95abef7
scripts/release/release.js
@@ -252,8 +252,8 @@ async function main() {
252
// Update Docker version
253
//
254
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}`);
+ docker("build", "-t", `scaleway/cli:v${newVersion}`, ".");
+ docker("push", `scaleway/cli:v${newVersion}`);
257
258
259
// Creating post release commit
0 commit comments