great content; easy to follow... I will be using this for my deployment. well done
@JosephOfobuike4 ай бұрын
A year later, followed through, made some changes as required by AWS and it still worked. Excellent👏
@shivdasnanaware69337 ай бұрын
Sweet and simple explanation for AWS ci-cd pipeline and easy to follow steps. Thanks a lot 🙏
@christianonwuchekwa6 ай бұрын
simple and on point. 👌
@rohitshakya79325 ай бұрын
thank you so much brother
@amith_cm Жыл бұрын
How are you doing this without specifying the operating system for the managed image
@eomaxl10 ай бұрын
Great content. Simple and effective. Thanks for making this content. Kudos !!
@ellisha8204 Жыл бұрын
yaaaaay thank you so much, it worked! for the Operating System section I just chose: 'Ubuntu', Runtime: 'Standard', Image: 'aws/codebuild/standard:7.0', then I chose 'Always use the latest image for this runtime version' and here are the build commands if anyone needs them: version: 0.2 phases: install: commands: - npm ci build: commands: - npm run build artifacts: files: - '**/*' base-directory: 'build' cache: paths: - 'node_modules/**/*' for some reason the 'runtime-versions 'part was throwing an error during the build, so I took it out and everything succeeded after that! I think it prolly is related to the operation system, but stackoverflow didn't really have any up to date solutions.
@eshandas364511 ай бұрын
Phase context status code: CLIENT_ERROR Message: no matching base directory path found for build getting this error
@_lestina Жыл бұрын
This is informative
@yatipadia Жыл бұрын
Insightful
@it_dayro8 ай бұрын
how can do using EC2 instead of S3 I want some ref to deploy in Ubuntu EC2
@sebastiannietor9724 Жыл бұрын
Can i run instead of npm install the command npm install --legacy-peer-deps? I need to solve an error with a library
@thisisbadpanda10 ай бұрын
You can specify that in the build commands JSON
@MuhammadUmar-kq1iy Жыл бұрын
not working without specifying the operating system