From 3538db9fdd6a24292906e0a7be506de7f6cc6903 Mon Sep 17 00:00:00 2001 From: Donald Labaj Date: Fri, 4 Oct 2024 15:34:59 -0400 Subject: [PATCH] fix: Disable dry run Disable dry run to release to npm --- packages/module/release.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/module/release.config.js b/packages/module/release.config.js index 994d140..0a1e180 100644 --- a/packages/module/release.config.js +++ b/packages/module/release.config.js @@ -20,5 +20,5 @@ module.exports = { '@semantic-release/npm' ], tagFormat: 'prerelease-v${version}', - dryRun: true + dryRun: false };