DEV Community

Discussion on: Continuous Delivery Patterns with Serverless Applications

Collapse
 
sqlrob profile image
Robert Myers
Serverless applications don't have separate "build" and "deploy" steps, since there's no artifact that developers need to manage

The C# Lambda I have where the build uses the aws cli to package the zip as an artifact begs to differ.

Collapse
 
markoa profile image
Marko Anastasov

If you're managing that artifact directly then maybe you're not using a framework to delegate that job?

Collapse
 
sqlrob profile image
Robert Myers

I wrote the bit to deploy, using cake (serverless using the AWS definition), someone else is porting to serverless (serverless.io). There's still the build step, even if the artifacts become 100% handled by serverless.io.