Skip to content

Fix: git actions 이 실패해도 머지되는 버그 수정 (#96) #20

Fix: git actions 이 실패해도 머지되는 버그 수정 (#96)

Fix: git actions 이 실패해도 머지되는 버그 수정 (#96) #20

Workflow file for this run

name: Deploy to Server
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: SSH and Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd ~/project/develop/
git fetch --all
git checkout origin/${{ github.ref }}
docker compose up --build -d
git checkout develop
git pull origin