Skip to content

#169 [hotfix] 토큰 재발급 이슈 #292

#169 [hotfix] 토큰 재발급 이슈

#169 [hotfix] 토큰 재발급 이슈 #292

Workflow file for this run

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: '에러를 확인해주세요'