Skip to content

Commit

Permalink
[INFRA] Setting : 임시 배포 backend github action 설정오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
404-not-foundl committed Jun 10, 2024
1 parent 31e2983 commit da319bc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,18 @@ jobs:
echo "${{ secrets.APP_PROPERTIES_PROD }}" >> backend/src/main/resources/application-prod.properties
echo "${{ secrets.APP_PROPERTIES }}" >> backend/src/main/resources/application.properties
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'

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

- name: Build with Gradle
run: ./gradlew build
working-directory: backend

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
Expand Down

0 comments on commit da319bc

Please sign in to comment.