From b29aa94c015dcc46ce4b5952677656173ae6f0d5 Mon Sep 17 00:00:00 2001 From: yazninja Date: Mon, 16 May 2022 23:07:55 +0800 Subject: [PATCH] workflow for main and stable releases --- .circleci/config.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4c387387..95a62219 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -168,25 +168,33 @@ workflows: - prepare-build: filters: branches: - only: develop + only: + - main + - stable - build-windows: requires: - prepare-build filters: branches: - only: develop + only: + - main + - stable - build-linux: requires: - prepare-build filters: branches: - only: develop + only: + - main + - stable - build-winget: requires: - prepare-build filters: branches: - only: develop + only: + - main + - stable - release: requires: - build-windows @@ -194,4 +202,6 @@ workflows: - build-winget filters: branches: - only: develop + only: + - main + - stable