Skip to content

Commit

Permalink
fix: github action workflow working-directory 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
egg528 committed Jan 13, 2024
1 parent ff0b573 commit 0ec6fd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/admin-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
distribution: 'temurin'

- name: build with gradle
run: ./backend/gradlew bootJar
working-directory: ./backend
run: ./gradlew bootJar

- name: push to dockerhub
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dev-api-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
distribution: 'temurin'

- name: build with gradle
run: ./backend/gradlew bootJar
working-directory: ./backend
run: ./gradlew bootJar

- name: push to dockerhub
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/live-api-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
distribution: 'temurin'

- name: build with gradle
run: ./backend/gradlew bootJar
working-directory: ./backend
run: ./gradlew bootJar

- name: push to dockerhub
run: |
Expand Down

0 comments on commit 0ec6fd4

Please sign in to comment.