MNG-28 feat: 푸시 알림 보낼 떼 idInfo에 type 추가 #85
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: CI-dev | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./ | |
APPLICATION: ${{ secrets.APPLICATION_DEV }} | |
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_DEV }} | |
APPLE_KEY: ${{ secrets.APPLE_KEY_DEV }} | |
steps: | |
# 소스 코드 체크아웃 | |
- uses: actions/checkout@v2 | |
# JDK 11 설정 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
# Gradle 패키지 캐시 | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
# 설정 파일 생성 | |
- run: | | |
cd ./src/main/resources | |
touch ./application.yml | |
echo "${{env.APPLICATION}}" > ./application.yml | |
touch ./firebase-key.json | |
echo "${{env.GOOGLE_APPLICATION_CREDENTIALS}}" | base64 --decode > ./firebase-key.json | |
touch ./apple-key.p8 | |
echo "${{env.APPLE_KEY}}" > ./apple-key.p8 | |
# 설정 파일을 작업공간에 저장 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: application.yml | |
path: ./src/main/resources/application.yml | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: firebase-key.json | |
path: ./src/main/resources/firebase-key.json | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: apple-key.p8 | |
path: ./src/main/resources/apple-key.p8 | |
# gradlew 권한 설정 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
working-directory: ${{ env.working-directory }} | |
# Gradle로 빌드 | |
- name: Build with Gradle | |
run: ./gradlew build | |
working-directory: ${{ env.working-directory }} | |
# Gradle 캐시 정리 | |
- name: Cleanup Gradle Cache | |
if: ${{ always() }} | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties | |