Skip to content

Commit

Permalink
Create CICD-Tag-Test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SAgiKPJH committed May 5, 2023
1 parent 236fc56 commit e94acb3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CICD-Tag-Test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push: # push 이벤트 감지
tags: # 태그 이벤트 중
- 'release/*' # release 태그가 붙은 커밋 감지

jobs:
build: # build 작업
runs-on: ubuntu-latest # 우분투 환경에서 실행

steps: # 실행할 작업들

- name: Checkout code # 코드 체크아웃 액션 실행
uses: actions/checkout@v2

- name: Run custom command # 사용자 정의 명령어 실행
if: contains(github.ref, 'refs/tags/release') # github.ref에 'refs/tags/release' 문자열이 포함되어 있는지 확인

run: | # 실행할 명령어들
echo Add other actions to build,
echo test, and deploy your project.

0 comments on commit e94acb3

Please sign in to comment.