Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KimMinWoooo committed Sep 4, 2024
1 parent bbd9b92 commit b81132a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@ jobs:

# 3. Gradle 빌드
- name: Build with Gradle
run: ./gradlew build
run: |
cd backend # gradlew 파일이 있는 디렉토리로 이동
./gradlew build
- name: Login to Docker Hub
run: echo $DOCKER_HUB_PASSWORD | docker login -u $DOCKER_HUB_USERNAME --password-stdin

- name: Grant execute permission for gradlew
run: chmod +x gradlew

# Frontend 빌드 및 S3 배포
- name: Build and deploy Frontend
run: |
Expand Down

0 comments on commit b81132a

Please sign in to comment.