#171 [hotfix] 데일리 루틴 테마 리스트 조회할 때, 기본값을 고정으로 전달해서 테마 리스트가 변동할 경우 순서 안맞는 이슈 해결 #293
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: Softie PR CI | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Access GOOGLE SERVICES JSON | |
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json | |
- name: Create Local Properties | |
run: touch local.properties | |
- name: Access Local Properties | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
run: | | |
echo BASE_URI=\"$API_KEY\" >> local.properties | |
- name: Lint Check | |
run: ./gradlew ktlintCheck -PcompileSdkVersion=34 | |
- name: Build with Gradle | |
run: ./gradlew build -PcompileSdkVersion=34 | |
- name: On Success!! Congratulations | |
if: ${{ success() }} | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_COLOR: '#53A551' | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_TITLE: 'Sofite/PR Check SUCCESS💚' | |
MSG_MINIMAL: true | |
SLACK_USERNAME: Sofite-Android | |
SLACK_MESSAGE: 'PR이 완료되었습니다' | |
- name: On Failed, Notify in Slack | |
if: ${{ failure() }} | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_COLOR: '#ff0000' | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_TITLE: 'Sofite/Android Debug build Fail❌' | |
MSG_MINIMAL: true | |
SLACK_USERNAME: Sofite-Android | |
SLACK_MESSAGE: '에러를 확인해주세요' |