Hi All,
I am looking for an options of automatic (triggered) deployments of existing lambdas.
Currently our Project is based on Serverless v.0.5.6 and deployment is done via dash deploy.
This allows to interactively deploy only those functions which were updated/added.
What we’re trying to achieve is kind of deployment pipeline - grab recent changes from master, restore npm packages recursively (every Project/Lambda may have own packages.config) and deploy the changed functions to our AWS environment. Ideally, it should be function level deployment (not Project level). Actually, this is something what could be scripted based on the steps I described above, but probably this there are some reference models for this already exist.
Does anybody have an experience with such configurations on CI server (e.g. Jenkins)?
Thank you!