TEST #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 배포 | |
on: | |
push: | |
branches: [main, deploy/33-BE_cd] | |
workflow_dispatch: | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: execute remote ssh | |
uses: appleboy/ssh-action@master | |
env: | |
REMOTE_SSH_PASSWORD: ${{ secrets.REMOTE_SSH_PASSWORD }} | |
with: | |
host: ${{ secrets.REMOTE_SSH_HOST }} | |
username: ${{ secrets.REMOTE_SSH_USERNAME }} | |
password: ${{ secrets.REMOTE_SSH_PASSWORD }} | |
port: ${{ secrets.REMOTE_SSH_PORT }} | |
envs: BRANCH_NAME, REMOTE_SSH_PASSWORD | |
script_stop: true | |
script: | | |
echo $BRANCH_NAME | |
cd workspaces/1day1baek/back | |
git reset --hard HEAD | |
echo 11111111111111111111111111111111111111111 | |
git checkout -B $BRANCH_NAME | |
git pull origin $BRANCH_NAME | |
echo 2222222222222222222222222222222222 | |
server_process=$(ps -ef | grep OneDayOneBaek-0.0.1-SNAPSHOT.jar$) | |
echo 333333333333333333333333333333333 | |
if [ -n "$server_process" ]; then | |
server_pid=(${server_process// / }) | |
server_pid=${server_pid[1]} | |
echo "existed server pid : $server_pid" | |
echo $REMOTE_SSH_PASSWORD | sudo -S kill -9 $server_pid | |
fi | |
./run_sandbox.sh |