[Fix] 회원 친구목록 조회 시 잘못된 정보 불러오는 문제 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gradle CI | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Create properties | |
run: | | |
cd favor | |
echo "${{ secrets.GRADLE_PROPERTIES_CONTENT }}" > gradle.properties | |
mkdir -p src/main/resources | |
echo "${{ secrets.APPLICATION_YML_CONTENT }}" > src/main/resources/application.yml | |
- name: Grant execute permission for gradlew | |
run: | | |
cd favor | |
chmod +x gradlew | |
- name: Build with Gradle | |
run: | | |
cd favor | |
./gradlew bootJar |