Use Auto DevOps to deploy to EC2
To use Auto DevOps to deploy to EC2:
- 
In your
.gitlab-ci.ymlfile, reference theAuto-Devops.gitlab-ci.ymltemplate. - 
Define a job for the
buildstage namedbuild_artifact. For example:# .gitlab-ci.yml include: - template: Auto-DevOps.gitlab-ci.yml variables: AUTO_DEVOPS_PLATFORM_TARGET: EC2 build_artifact: stage: build script: - <your build script goes here> artifacts: paths: - <built artifact> 
For a video walkthrough of this process, view Auto Deploy to EC2.