다락방 별 모임을 조회하는 API의 요청 응답 속도 개선 #304
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: pull-request-build | |
on: | |
pull_request: | |
branches: | |
- develop-backend | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./backend | |
steps: | |
- name: 레포지토리 체크아웃 | |
uses: actions/checkout@v4 | |
- name: JDK 17을 설치 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Firebase 파일 이동 | |
run: | | |
mkdir -p src/main/resources/firebase | |
echo ${{ secrets.BACKEND_FIREBASE_JSON }} > src/main/resources/firebase/serviceAccountKey.json | |
- name: Apple Auth Key 파일 이동 | |
run: | | |
mkdir -p src/main/resources/auth | |
printf "%s" "${{ secrets.APPLE_AUTH_KEY }}" > src/main/resources/auth/AuthKey.p8 | |
- name: gradlew 권한 부여 | |
run: chmod +x ./gradlew | |
- name: Gradle 빌드 | |
run: ./gradlew clean build |