From 4aa4f554b320ddb0f1576b8f8abab3cc584bd3fe Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Sun, 8 Feb 2026 04:52:48 +0530 Subject: [PATCH 1/2] fix: Fixed an issue where the machine create command would fail with a generic Required error --- release.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release.config.js b/release.config.js index 46353ad..cdf49e8 100644 --- a/release.config.js +++ b/release.config.js @@ -70,6 +70,9 @@ module.exports = { { execCwd: ".", prepareCmd: [ + /** + * For creating the release assets, we need to create the output directories first. + */ `mkdir -p bin/macos bin/macos-arm bin/linux bin/windows`, `deno task compile`, `cd bin/linux`, From bc40a847058531afad43ac08b6ff94c11859cbb0 Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Sun, 8 Feb 2026 04:57:12 +0530 Subject: [PATCH 2/2] fix: Fixed an issue where the machine create command would fail with a generic Required error --- release.config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/release.config.js b/release.config.js index cdf49e8..81d7089 100644 --- a/release.config.js +++ b/release.config.js @@ -63,16 +63,13 @@ module.exports = { }, ], /** - * Compile the binaries for the release + * Compile the binaries for the release. */ [ "@semantic-release/exec", { execCwd: ".", prepareCmd: [ - /** - * For creating the release assets, we need to create the output directories first. - */ `mkdir -p bin/macos bin/macos-arm bin/linux bin/windows`, `deno task compile`, `cd bin/linux`,