Use Auto DevOps to deploy to EC2
To use Auto DevOps to deploy to EC2:
-
In your
.gitlab-ci.yml
file, reference theAuto-Devops.gitlab-ci.yml
template. -
Define a job for the
build
stage 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.