Hi all, i trying to find a way to execute a script...
# dotnet
l
Hi all, i trying to find a way to execute a script during a pulumi deployment. Use case: entity framework migrations I want to execute the ef core migrations after the azure sql database is been deployed. Is there a way to execute / deploy this ef core schema during a pulumi stack deployment ?
q
AFAIK, there is no way to run scripts during deployment. I would create an Azure DevOps pipeline that runs
pulumi up
and then runs the migrations.