summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Deploy-ECS.gitlab-ci.yml
blob: 5f4bd631db6bd4749730b2d5f28bbaa184f9e302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This template is deprecated and will be removed as part of GitLab 13.2!
#
# If you have referenced this template in your CI pipeline, please
# update your CI configuration by replacing the following occurrence(s):
#
# template: Deploy-ECS.gitlab-ci.yml
#
# with
#
# template: AWS/Deploy-ECS.gitlab-ci.yml
#
# --------------------
#
# Documentation: https://docs.gitlab.com/ee/ci/cloud_deployment/#deploy-your-application-to-the-aws-elastic-container-service-ecs

stages:
  - build
  - test
  - review
  - deploy
  - production

before_script:
  - printf '\nWARNING!\nThis job includes "Deploy-ECS.gitlab-ci.yml". Please rename this to "AWS/Deploy-ECS.gitlab-ci.yml".\n'

variables:
  AUTO_DEVOPS_PLATFORM_TARGET: ECS

include:
  - template: Jobs/Build.gitlab-ci.yml
  - template: Jobs/Deploy/ECS.gitlab-ci.yml