320x100
320x100

.stage_name: &stage_name
yml의 앵커 alias 기능을 이용해 코드 재사용성과 가독성을 높이는 방법

 

- .state_name

정의된 템플릿

 

- &stage_name

템플릿에 앵커를 붙혀 나중에 재사용할 수 있게 해줌

 

- *stage_name

템플릿을 재사용

 

 

예시

stages:
  - build
  - test
  - deploy

.build_template: &build_template
  stage: build
  script:
    - echo "Building the project"

.test_template: &test_template
  stage: test
  script:
    - echo "Running tests"

build_job:
  <<: *build_template

test_job:
  <<: *test_template
300x250
728x90