bitbucket pipeline에서 step을 변수로 만들어 사용하기

hotbreakb·2023년 5월 22일
0

saas

목록 보기
5/5
post-custom-banner

파이프라인을 작성할 때 step을 하나씩 밟는다. 이런 하나의 step을 여러 번 사용할 수 있다. 예를 들어 develop deploy를 한다면, dev-20230522-01과 같이 태그를 만들어 2개의 step을 돌릴 수 있다.

definitions:
  steps:
    - step: &security-scan
        name: Security Scan
        script:
          - pipe: atlassian/git-secrets-scan:0.5.1
    - step: &A-dev-build
    	name: Develop build
pipelines:
  tags:
    "dev-*":
      - parallel:
          - step: *A-dev-build
          - step: *security-scan

참고 링크

profile
글쟁이 프론트 개발자, 헬렌입니다.
post-custom-banner

0개의 댓글