모임 참여자 프로필 사진 볼 수 있도록 수정 및 테스트용 사용자 구현 및 닉네임 검증 추가 #257
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: 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 |