Skip to content

CI/CD 설정 파일 변경 #49

CI/CD 설정 파일 변경

CI/CD 설정 파일 변경 #49

Workflow file for this run

name: Nodam-Nodam Frontend CI/CD
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
env:
CI: false
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 21.0.0
- name: Install yarn
run: npm install -g yarn
- name: Install Dependencies
run: yarn install --immutable --immutable-cache --check-cache
- name: Build React App
run: yarn run build
- name: Check current directory
run: |
ls -a build/
echo "Current Directory: $(pwd)"
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Package Application
run: tar -czvf build.tar.gz build
- name: Deploy React App
uses: appleboy/scp-action@v0.1.3
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSWORD }}
source: build.tar.gz
target: /home/${{ secrets.SERVER_USERNAME }}/project/nodam-nodam/
rm: true
debug: true