[Question]: Release branch skips DeliveryToAppsource when the CI CD is running
Question
we created a Release branch to use it when we want to deliver a final version of the app to Appsource , the problem is the CICD that we ran for the Release branch skips the delivery to Appsource step:
Release Branch :
Main Branch:
they both have the same configuration :
is there any reason for the delivery to get skipped in the release ?
Hello @freddydk , any update on this issue ?
Sorry for the delay here.
By default, only builds from the main branch will trigger continuous delivery to AppSource.
Dev branches or Release branches are ignored.
You can add a property in the deliverToAppSource setting called branches like:
"deliverToAppSource": {
"productId": "productId",
"continuousDelivery": true,
"branches": [ "main", "release" ]
}
This should cause all builds from main and release branches to be delivered.
The branches property is described in https://aka.ms/algosettings#deliverto - but missing in the https://aka.ms/algosettings#delivertoappsource - will add it there.