Merge pull request #45 from boostcampwm-2024/ezcolin2-patch-1 #21
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: Create Directory on Remote Server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-directory: | |
runs-on: ubuntu-latest | |
steps: | |
# 코드 체크아웃 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Node.js 설치 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "23" | |
# 패키지 설치 및 React 빌드 | |
- name: Install dependencies and build | |
run: | | |
cd frontend | |
npm install | |
npm run build | |
# aws cli를 통해 ncloud object storage 업로드 | |
- name: Configure AWS credentials | |
env: | |
NCLOUD_ACCESS_KEY_ID: ${{ secrets.NCLOUD_ACCESS_KEY_ID }} | |
NCLOUD_SECRET_ACCESS_KEY: ${{ secrets.NCLOUD_SECRET_ACCESS_KEY }} | |
run: | | |
aws configure set aws_access_key_id $NCLOUD_ACCESS_KEY_ID | |
aws configure set aws_secret_access_key $NCLOUD_SECRET_ACCESS_KEY | |
aws configure set region ap-northeast-2 | |
aws --endpoint-url=https://kr.object.ncloudstorage.com s3 cp ./frontend/dist s3://octodocs/ --recursive --debug | |
# 패키지 설치 및 Nest.js 빌드 | |
- name: Install dependencies and build | |
run: | | |
cd backend | |
npm install | |
npm run build | |
# 배포용 쉘 스크립트 파일 전송 | |
- name: Copy deploy.sh to remote server | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.REMOTE_IP }} | |
username: ${{ secrets.REMOTE_USER }} | |
key: ${{ secrets.REMOTE_PRIVATE_KEY }} | |
source: ./deploy.sh | |
target: /home/root/deploy.sh |