Skip to content

Commit

Permalink
빌드 프로세스 업데이트 - 서버와 클라이언트 경로 Path를 수정하라
Browse files Browse the repository at this point in the history
설명
.github/workflows/deploy.yml 과 .github/workflows/client.yml 업데이트하여 빌드 프로세스를 개선했습니다.

관련 변경 사항:
pull_request 이벤트에 paths 속성 추가하여 서버 코드 변경 감지
  • Loading branch information
jihwooon committed Mar 3, 2024
1 parent 044129a commit 17947f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: server
on:
push:
branches: [ main ]
paths:
- "server/**"
pull_request:
branches: [ main ]

paths:
- "server/**"
jobs:
build:
runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@ on:
push:
branches: [ main ]
paths:
- "./client/**"
- "client/**"
pull_request:
branches: [ main ]
paths:
- "./client/**"
- "client/**"

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client

steps:
- uses: actions/checkout@v3
- name: Setup node.js
Expand Down

0 comments on commit 17947f8

Please sign in to comment.