-
Notifications
You must be signed in to change notification settings - Fork 3
73 lines (63 loc) · 2.16 KB
/
debug_builder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: YELLO Push Builder
on:
push:
branches: [ develop, main ]
defaults:
run:
shell: bash
working-directory: .
jobs:
build:
name: APK Builder When Push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Change gradlew permissions
run: chmod +x ./gradlew
- name: Create Local Properties
run: touch local.properties
- name: Access Local Properties
env:
base_url: ${{ secrets.BASE_URL }}
native_app_key: ${{ secrets.NATIVE_APP_KEY }}
run: |
echo base.url=\"$base_url\" >> local.properties
echo native.app.key=\"$native_app_key\" >> local.properties
echo nativeAppKey=$native_app_key >> local.properties
- name: Build debug APK
run: ./gradlew assembleDebug --stacktrace
- name: On Success
if: ${{ success() }}
uses: MeilCli/slack-upload-file@v1
with:
slack_token: ${{ secrets.SLACK_BOT_TOKEN}}
channels: ${{ secrets.SLACK_CHANNEL_ID }}
file_path: 'app/build/outputs/apk/debug/app-debug.apk'
file_name: 'YELLO.apk'
file_type: 'apk'
initial_comment: '🎉 YELLO가 슬랙으로 들어왔습니다'
- name: On Failed, Notify in Slack
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_COLOR: '#ff0000'
SLACK_ICON: https://avatars.githubusercontent.com/u/137089215?s=48&v=4
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: 'YELLO/Android Debug build Fail❌'
MSG_MINIMAL: true
SLACK_USERNAME: YELLO_ANDROID
SLACK_MESSAGE: 'APK 생성 중 에러가 발생했습니다. 에러를 확인해주세요'