Hello!
After reading this: Split Testing | Netlify Docs I’m trying to setup my first netlify split-test for a React site we deploy using netlify CLI.
We do currently deploy A site like this:
netlify deploy --dir=packages/app/build --prod
netlify deploy --dir=packages/app/build --alias=v4
netlify deploy --dir=packages/app/build --branch=main
and B is deployed like:
netlify deploy --dir=packages/app/build --alias=next
netlify deploy --dir=packages/app/build --branch=canary
(according to --help, --branch is deprecated and we should stick to --alias, but tried both because alias are not being recognized for split-tests)
According to:
This feature requires either continuous deployment or manual deploys with Netlify CLI. If you’re not using Netlify CLI, we recommend connecting a Git repository for continuous deployment.
My expectation is that deploying like this, I could setup a test between main and canary; however split config panel does not show any branches.
How to fix this?
Thank you!