I am using App Center as CI for my application. I have to configure all the branches manually against which I need to build.
What I Want
If somebody creates a feature branch from develop/master and pushes the code, then App Center should start running automatically like CircleCI build etc.
Is this not possible in App Center?
Yes, that's possible. You need to use app center fastlane plugin. You need to use
appcenter_upload
function. SSH has nothing to do with the whole process.In your
FastFile
you need to configure a lane in following manner:In your CI pipeline yaml you'll have to have something line this:
This will push version for every change of the head of
development
.Please look at the repo guide how you can provide
ENV
variable, also look at your CI how you can pass params from the yaml toFastLane
.