Skip to content

Commit 69f727e

Browse files
committed
build: allow next releases
1 parent a3975cd commit 69f727e

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.circleci/config.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@ jobs:
8181
name: release
8282
command: yarn semantic-release || true
8383

84+
release-next:
85+
<<: *job_defaults
86+
steps:
87+
- checkout
88+
- restore_cache:
89+
key: *cache_key
90+
- restore_cache:
91+
key: *dist_key
92+
- run:
93+
name: release
94+
command: yarn semantic-release --branch next || true
95+
8496
workflows:
8597
version: 2
8698
build-test-release:
@@ -104,4 +116,12 @@ workflows:
104116
- test-app
105117
filters:
106118
branches:
107-
only: master
119+
only:
120+
- master
121+
- release-next:
122+
requires:
123+
- test-app
124+
filters:
125+
branches:
126+
only:
127+
- next

0 commit comments

Comments
 (0)