We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff9cd54 commit 74c1b9bCopy full SHA for 74c1b9b
1 file changed
.github/workflows/dev_deploy.yml
@@ -24,10 +24,12 @@ jobs:
24
# 3) Gradle 실행 권한 부여
25
- name: Grant execute permission for gradlew
26
run: chmod +x ./gradlew
27
+ working-directory: ./backend
28
29
# 4) Gradle 빌드
30
- name: Build with Gradle
31
run: ./gradlew clean build
32
33
34
# 4) Docker Hub 로그인
35
- name: Login to Docker Hub
@@ -40,7 +42,7 @@ jobs:
40
42
- name: Build and push Docker image
41
43
uses: docker/build-push-action@v3
44
with:
- context: .
45
+ context: ./backend
46
push: true
47
tags: ${{ secrets.DOCKER_USERNAME }}/withmorning:latest # Docker Hub에 올릴 이미지 태그
48
0 commit comments