mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
1.0 KiB
1.0 KiB
stage, group, info, title
stage | group | info | title |
---|---|---|---|
Deploy | Environments | To determine the technical writer assigned to the Stage/Group associated with this page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments | 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.