From 37430d5daba3a2b5cf6c9a830df6dc6e744e99cc Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 11 May 2018 14:21:24 -0400 Subject: [PATCH] Run semantic-relase on the production branch This change will make semantic-release run only on the `production` branch. This means only merges to production will create new NPM packages, GitHub releases, git tags, and `:latest` Docker images on Docker hub. Connects https://github.com/pelias/pelias/issues/721 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 50f7d81f..1b8081e4 100644 --- a/package.json +++ b/package.json @@ -90,5 +90,8 @@ "validate", "test", "check-dependencies" - ] + ], + "release": { + "branch": "production" + } }