From 9d0f42adb99c78912e0cdfa9a7b94bbc9166da1d Mon Sep 17 00:00:00 2001 From: Hasan Genc Date: Fri, 19 Jun 2020 17:32:38 +0300 Subject: [PATCH] Add beta deploy workflow --- .circleci/config.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f164d8a..1eb8661 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,3 +99,22 @@ workflows: filters: branches: only: master + test-betadeploy: + jobs: + - test: + filters: + tags: + only: /^v.*/ + - hold: + type: approval + requires: + - test + filters: + branches: + only: master + - beta_deploy: + requires: + - hold + filters: + branches: + only: master