Skip to content

chore: Update main.yml #9

chore: Update main.yml

chore: Update main.yml #9

Workflow file for this run

name: Create Directory on Remote Server
on:
push:
branches:
- cicd
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'
# 패키지 설치 및 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_HOST }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
source: ./deploy.sh
target: /home/root/deploy.sh