Skip to content

Use GitHub token for repo access in deploy script #3

Use GitHub token for repo access in deploy script

Use GitHub token for repo access in deploy script #3

Workflow file for this run

name: Deploy to EC2
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deploy to EC2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_SSH_KEY }}
script: |
if [ ! -d "~/backend" ]; then
git clone https://${{ secrets.MY_GITHUB_TOKEN }}@github.com/Amore-Innovation/backend.git ~/backend
fi
cd ~/backend
git remote set-url origin https://${{ secrets.MY_GITHUB_TOKEN }}@github.com/Amore-Innovation/backend.git
# 3. 최신 코드 가져오기 및 배포 실행
git pull origin main
docker-compose up -d --build