From 3a84ed33540a29348a5bc0d50ef84cc34ba6c46d Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Thu, 7 Nov 2024 06:45:01 -0800 Subject: [PATCH] fix(release): add semantic-release config --- release.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 release.config.js diff --git a/release.config.js b/release.config.js new file mode 100644 index 0000000..a900fd4 --- /dev/null +++ b/release.config.js @@ -0,0 +1,9 @@ +module.exports = { + extends: 'scratch-semantic-release-config', + branches: [ + { + name: 'master' + // default channel + } + ] +};