Skip to content

Commit a7eccc4

Browse files
🚀 [cicd] : 워크플로우 릴리즈 브랜치에 적용하도록 수정
* 👷 [cicd] : 도커사용 * 🚀 [cicd] : 컨테이너에 tls인증서 볼륨 마운트 * 🚀 [cicd] : 변경된 워크플로우 디벨롭 브랜치에 적용 * 🚀 [cicd] : 워크플로우 릴리즈 브랜치에 적용하도록 수정
1 parent 138ac92 commit a7eccc4

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/CD.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# github repository actions 페이지에 나타날 이름
22
name: CD for front using github actions
33

4-
# event trigger
5-
# develop 브랜치에 pull_request가 닫히거나 푸시했을때 실행
64
on:
7-
push:
8-
branches: [ "develop" ]
5+
release:
6+
types: [created]
97

108
permissions:
119
contents: read

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: CI for front using github actions
66
on:
77
pull_request:
88
types: [ opened, synchronize ]
9-
branches: [ "develop" ]
9+
branches: [ "release" ]
1010

1111
permissions:
1212
contents: read

.github/workflows/create-jira-bug-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ jobs:
7474
- name: Log created issue
7575
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"
7676

77-
- name: Checkout develop code
77+
- name: Checkout release code
7878
uses: actions/checkout@v4
7979
with:
80-
ref: develop
80+
ref: release
8181
token: ${{ secrets.PAT_TOKEN }}
8282

8383
- name: Create branch with Ticket number

0 commit comments

Comments
 (0)