Skip to content

Commit 832867d

Browse files
committed
chore: turn on beta deployments for cy-prompt
1 parent e18d31a commit 832867d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/workflows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ mainBuildFilters: &mainBuildFilters
3939
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
4040
- 'update-v8-snapshot-cache-on-develop'
4141
- 'update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40'
42+
- 'feat/cy-prompt'
4243

4344
# usually we don't build Mac app - it takes a long time
4445
# but sometimes we want to really confirm we are doing the right thing
@@ -49,6 +50,7 @@ macWorkflowFilters: &darwin-workflow-filters
4950
- equal: [ develop, << pipeline.git.branch >> ]
5051
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
5152
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
53+
- equal: [ 'feat/cy-prompt', << pipeline.git.branch >> ]
5254
- equal:
5355
[
5456
'update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40',
@@ -64,6 +66,7 @@ linuxArm64WorkflowFilters: &linux-arm64-workflow-filters
6466
- equal: [ develop, << pipeline.git.branch >> ]
6567
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
6668
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
69+
- equal: [ 'feat/cy-prompt', << pipeline.git.branch >> ]
6770
- equal:
6871
[
6972
'update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40',
@@ -91,6 +94,7 @@ windowsWorkflowFilters: &windows-workflow-filters
9194
- equal: [ develop, << pipeline.git.branch >> ]
9295
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
9396
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
97+
- equal: [ 'feat/cy-prompt', << pipeline.git.branch >> ]
9498
- equal:
9599
[
96100
'update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40',
@@ -169,7 +173,7 @@ commands:
169173
name: Set environment variable to determine whether or not to persist artifacts
170174
command: |
171175
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
172-
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40" ]]; then
176+
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40" && "$CIRCLE_BRANCH" != "feat/cy-prompt" ]]; then
173177
export SHOULD_PERSIST_ARTIFACTS=true
174178
fi' >> "$BASH_ENV"
175179
# You must run `setup_should_persist_artifacts` command and be using bash before running this command

0 commit comments

Comments
 (0)