feat: [BE] 자동배포 구현 #1
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: Deploy To EC2 | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Github Repository 파일 불러오기 | ||
uses: actions/checkout@v4 | ||
- name: Node 설치 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
- name: 의존성(라이브러리) 설치 | ||
run: npm ci | ||
- name: .env 파일 만들기 | ||
run: | | ||
echo '${{ secrets.ENV }}' > .env | ||
- name: 테스트 코드 실행 | ||
run: npm run test | ||
- name: 빌드 | ||
run: npm run build | ||
- name: github-action 컴퓨터에서 압축하기 | ||
run: tar -czvf project.tar.gz dist .env package.json package-lock.json | ||
- name: SCP로 EC2에 빌드된 파일 전송하기 | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.EC2_HOST }} | ||
username: ${{ secrets.EC2_USERNAME }} | ||
key: ${{ secrets.EC2_PRIVATE_KEY }} | ||
source: project.tar.gz | ||
target: /root/nest-server/tobe | ||
- name: SSH로 EC2에 접속하기 | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.EC2_HOST }} | ||
username: ${{ secrets.EC2_USERNAME }} | ||
key: ${{ secrets.EC2_PRIVATE_KEY }} | ||
script_stop: true | ||
script: | | ||
rm -rf /root/nest-server/current | ||
mkdir /root/nest-server/current | ||
mv /root/nest-server/tobe/project.tar.gz /root/nest-server/current/project.tar.gz | ||
cd /root/nest-server/current | ||
tar -xvf project.tar.gz | ||
npm i | ||
pm2 kill | ||
pm2 start dist/main.js --name "backend-server" |