We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d283b5b commit b81e978Copy full SHA for b81e978
.github/workflows/cd.yml
@@ -133,14 +133,13 @@ jobs:
133
uses: tj-actions/branch-names@v8
134
135
- name: 현재 워킹 브랜치를 확인한다
136
- run: echo '${{ steps.branch-names.outputs.current_branch }}'
+ run: echo "${{ steps.branch-names.outputs.current_branch }}"
137
138
- name: 현재 working branch name을 검사한다
139
+ if: steps.branch-names.outputs.current_branch != 'feature/31-cd-process'
140
run: |
- if [[ '${{ steps.branch-names.outputs.current_branch }}' != "feature/31-cd-process" ]]; then
141
- echo 운영 환경에 배포는 feature/31-cd-process 브랜치에서만 가능합니다
+ echo "운영 환경에 배포는 feature/31-cd-process 브랜치에서만 가능합니다"
142
exit 1
143
- fi
144
145
- name: Repository를 가져온다
146
uses: actions/checkout@v4
0 commit comments