We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3975cd commit 69f727eCopy full SHA for 69f727e
.circleci/config.yml
@@ -81,6 +81,18 @@ jobs:
81
name: release
82
command: yarn semantic-release || true
83
84
+ release-next:
85
+ <<: *job_defaults
86
+ steps:
87
+ - checkout
88
+ - restore_cache:
89
+ key: *cache_key
90
91
+ key: *dist_key
92
+ - run:
93
+ name: release
94
+ command: yarn semantic-release --branch next || true
95
+
96
workflows:
97
version: 2
98
build-test-release:
@@ -104,4 +116,12 @@ workflows:
104
116
- test-app
105
117
filters:
106
118
branches:
107
- only: master
119
+ only:
120
+ - master
121
+ - release-next:
122
+ requires:
123
+ - test-app
124
+ filters:
125
+ branches:
126
127
+ - next
0 commit comments