rashid hacker
rashid hacker

Reputation: 125

how to deploy github project to aws without CodePipeline

in my region, there is no AWS codepipeline available

and I need a method to deploy my GitHub project to AWS Elastic Beanstalk

is there any suggestion??

Upvotes: 1

Views: 94

Answers (1)

Marcin
Marcin

Reputation: 238747

If there is not CP, then maybe there is CodeBuild (CB) and you can use this. CB's source can be github.

Subsequently, in your buildspec.yml you would use EB CLI or AWS CLI to "manually" deploy your application to your EB environment.

Upvotes: 2

Related Questions