Skip to content

Commit ee216da

Browse files
committed
fix: CD develop branch로 변경
1 parent 3a4ce48 commit ee216da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Create Directory on Remote Server
22
on:
33
push:
44
branches:
5-
- be-feature-#173
5+
- develop
66

77
jobs:
88
env:
@@ -24,7 +24,7 @@ jobs:
2424
REMOTE_HOST: ${{ secrets.REMOTE_DEV_IP }}
2525
REMOTE_USER: ${{ secrets.REMOTE_USER }}
2626
SSH_KEY: ${{ secrets.REMOTE_PRIVATE_KEY }}
27-
BRANCH_NAME: "feature-be-#173"
27+
BRANCH_NAME: "develop"
2828
run: |
2929
mkdir ~/.ssh
3030
echo "$SSH_KEY" > ~/.ssh/id_rsa
@@ -36,16 +36,16 @@ jobs:
3636
if [ -d "$DIR" ]; then
3737
echo "$DIR 디렉토리가 존재합니다. 최신 버전으로 업데이트 중..."
3838
cd "$DIR"
39-
git switch -c be-feature-#173
40-
git pull origin be-feature-#173
39+
git switch -c develop
40+
git pull origin develop
4141
4242
4343
else
4444
echo "$DIR 디렉토리가 존재하지 않습니다. 클론 중..."
4545
git clone https://github.com/boostcampwm-2024/web15-OctoDocs.git "$DIR"
4646
cd "$DIR"
47-
git switch -c be-feature-#173
48-
git pull origin be-feature-#173
47+
git switch -c develop
48+
git pull origin develop
4949
fi
5050
5151

0 commit comments

Comments
 (0)