#155 [hotfix] 행복 루틴 카드 사이즈 조정 #278
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: 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-AOS | |
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-AOS | |
SLACK_MESSAGE: '에러를 확인해주세요' |