From 12250f4ba89a6859f6882b3e6656ac21908c16b8 Mon Sep 17 00:00:00 2001 From: Sam Wray Date: Mon, 14 Sep 2020 09:40:12 +0100 Subject: [PATCH] Feat/399/semantic release bot (#431) * build: sets private flag to true this is required to use semantic-release without publishing to npm re #399 * ci(semantic-release): update travis config Creates build stages in travis config to satisfy semantic-release re: #399 * ci(semantic-release): adds .releaserc Defines branches for semantic-release to operate on re: #399 * ci(semantic-release): fixes travis config and branch tag format * ci(semantic-release): adds dry run flag to prevent accidents * ci(semantic-release): allows pre-releases on main * ci(semantic-release): removes prerelease from main branch * ci(semantic-release): removes prerelease from main --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 9cb69b094..ca9315d48 100644 --- a/.releaserc +++ b/.releaserc @@ -1,5 +1,5 @@ { - "branches": [{ name: "main", prerelease: true }], + "branches": ["main"], "tagFormat": "${version}", "dryRun": true }