José Marcos
José Marcos

Reputation: 113

How do I make AWS CodeDeploy to use AWS CodeCommit as a Git repo?

I cant't find any documentation about this! Every example is based on GitHub repos but how can I do this with AWS CodeCommit?

Upvotes: 9

Views: 3583

Answers (1)

Jonathan Turpie
Jonathan Turpie

Reputation: 1363

There isn't any direct integration available at this time.

You'll have to checkout your repo locally and then push it to S3. The easiest way to do this is with aws deploy push.

Upvotes: 4

Related Questions