CodePipeline buildspec and multiple build actions
问题 A simple buildspec like: version: 0.2 phases: install: commands: - (cd lambda/src; npm install) - aws cloudformation package --template-file lambda/sam.yml --s3-bucket skynet-lambda --output-template-file SkynetLambdaPackaged.yml artifacts: type: zip files: - SkynetLambdaPackaged.yml Works fine when I have one action in my build stage. But what if I want to have more build actions for example: I want to build my api server and frontend files in parallel. How do I model this? UPDATE In