Skip to content

Commit 5f6dc83

Browse files
committed
Don't attempt to publish next branch to s3
1 parent c4ac932 commit 5f6dc83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ jobs:
239239
blueprint-test,
240240
browser-test,
241241
]
242-
# Only run on pushes to branches that are not from the cron workflow
243-
if: github.event_name == 'push' && contains(github.ref, 'cron') != true
242+
# Only run on pushes to branches that are not from the cron workflow or the next branch
243+
if: github.event_name == 'push' && contains(github.ref, 'cron') != true && contains(github.ref, 'next') != true
244244
steps:
245245
- uses: actions/checkout@v4
246246
- uses: ./.github/actions/setup

0 commit comments

Comments
 (0)