File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Create Directory on Remote Server
22on :
33 push :
44 branches :
5- - be-feature-#173
5+ - develop
66
77jobs :
88 env :
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
You can’t perform that action at this time.
0 commit comments