Update kotlin monorepo to v1.9.23 #350
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: HACKER PR Checker | |
# | |
#on: | |
# pull_request: | |
# branches: [ develop, master ] | |
# | |
#defaults: | |
# run: | |
# shell: bash | |
# working-directory: . | |
# | |
#jobs: | |
# build: | |
# name: PR Checker | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v3 | |
# | |
# - name: Gradle cache | |
# uses: actions/cache@v3 | |
# with: | |
# path: | | |
# ~/.gradle/caches | |
# ~/.gradle/wrapper | |
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
# restore-keys: | | |
# ${{ runner.os }}-gradle- | |
# - name: set up JDK 11 | |
# uses: actions/setup-java@v3 | |
# with: | |
# distribution: 'temurin' | |
# java-version: 11 | |
# | |
# - name: Change gradlew permissions | |
# run: chmod +x ./gradlew | |
# | |
# - name: Access Firebase Service | |
# run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json | |
# | |
# - name: Build debug APK | |
# run: ./gradlew assembleDebug --stacktrace | |
# | |
# - name: On Success | |
# if: ${{ success() }} | |
# uses: rtCamp/action-slack-notify@v2 | |
# env: | |
# SLACK_COLOR: '#53A551' | |
# SLACK_ICON: https://user-images.githubusercontent.com/54518925/152633478-e38f005a-ad6e-4127-9f49-fd905a1c8f8d.png?size=48 | |
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
# SLACK_TITLE: 'HACKER/PR Check S.U.C.C.E.S.S 🎉🎉🎉' | |
# MSG_MINIMAL: true | |
# SLACK_USERNAME: HACKERBUCKS | |
# SLACK_MESSAGE: 'P R 성 공!!! 🎉🎉🎉 근데 물어본사람? 궁금한사람? 안물안궁이죠?' | |
# | |
# - name: On Failed, Notify in Slack | |
# if: ${{ failure() }} | |
# uses: rtCamp/action-slack-notify@v2 | |
# env: | |
# SLACK_COLOR: '#ff0000' | |
# SLACK_ICON: https://user-images.githubusercontent.com/54518925/152633478-e38f005a-ad6e-4127-9f49-fd905a1c8f8d.png?size=48 | |
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
# SLACK_TITLE: 'HACKER/Android Debug build Fail❌' | |
# MSG_MINIMAL: true | |
# SLACK_USERNAME: HACKERBUCKS | |
# SLACK_MESSAGE: '에러ㅋㅋㅋㅋㅋ났네ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅅㄱ' |