From 8120b56f7435dee6a509ec59ec7240ed445c5297 Mon Sep 17 00:00:00 2001 From: Hector Ramos Date: Fri, 15 Jun 2018 10:28:22 -0700 Subject: [PATCH] Run deploys to npm whenever a new tag is pushed to a stable branch --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 663c678228ca..e5e77ea922ae 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -662,13 +662,15 @@ workflows: - publish_npm_package: filters: branches: - ignore: /.*/ + only: + - /.*-stable/ tags: only: /v[0-9]+(\.[0-9]+)*(\-rc(\.[0-9]+)?)?/ requires: - test_javascript - test_ios - test_tvos + - test_android - test_end_to_end - analyze