Skip to content

Commit

Permalink
ci: deploy on dev server
Browse files Browse the repository at this point in the history
  • Loading branch information
son-daehyeon authored Jul 17, 2024
1 parent 5dd324f commit 8fee1b9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy on Dev server

on:
push:
branches:
- develop

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Deploy to EC2
run: |
ssh -o StrictHostKeyChecking=no ${{ secrets.SSH_HOST }} << 'EOF'
cd ~/wink-official-backend
git pull origin develop
echo "${{ secrets.CICD_DOCKER_ENV }}" > cicd.docker.env
docker compose build
docker compose down
docker compose up -d
EOF

0 comments on commit 8fee1b9

Please sign in to comment.