fix: deploy script 실행 코드 self-hosted 방식으로 변경 #22 #4
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: BE CD for Dev | ||
on: | ||
push: | ||
branches: [ "develop" ] | ||
paths: | ||
- backend/** | ||
permissions: | ||
contents: read | ||
jobs: | ||
deploy: | ||
runs-on: [self-hosted, linux, ARM64] # Self hosted runner 사용 | ||
- name: Deploy to EC2 | ||
run: sudo sh ~/deploy-script-dev.sh |