Skip to content

Commit

Permalink
fix: Directory Path Error
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJoonSon committed Dec 4, 2024
1 parent 68f0e17 commit 69132f9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/api-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: API Server CI/CD

on:
pull_request:
path: "server-api/**"
paths:
- "server-api/**"
paths-ignore:
- "client-app/**"
- "client-web/**"
- "client-api/**"
branches: [ "dev" ]
types:
- opened
Expand Down Expand Up @@ -49,12 +54,14 @@ jobs:
### gradlew 실행 권한 부여
- name: Grant execute Permission for gradlew
run: |
chmod +x ./server-api/gradlew
cd ./server-api
chmod +x ./gradlew
### project build
- name: Build with Gradle
run: |
./server-api/gradlew clean build -x test
cd ./server-api
./gradlew clean build -x test
### Docker Image Build and Push
- name: Login to Docker Hub
Expand Down

0 comments on commit 69132f9

Please sign in to comment.