-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (54 loc) · 2.14 KB
/
merge_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
# This is a basic workflow to help you get started with Actions
name: Mascota Merge Builder
on:
push:
branches: [ develop, master ]
defaults:
run:
shell: bash
working-directory: .
jobs:
build:
name: Generate APK
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 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Change gradlew permissions
run: chmod +x ./gradlew
- name: Build debug APK
run: ./gradlew assembleDebug --stacktrace
- 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/85377241?s=200&v=4?size=48
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_TITLE: 'Mascota/Android Debug build Fail❌'
MSG_MINIMAL: true
SLACK_USERNAME: MASCOTA_AOS
SLACK_MESSAGE: '에러를 확인해주세요'
- name: Upload APK
if: ${{ success() }}
uses: MeilCli/slack-upload-file@v1
with:
slack_token: ${{ secrets.SLACK_READ_WRITE_TOKEN }}
channels: ${{ secrets.SLACK_CHANNEL_DEPOLY }}
file_path: 'app/build/outputs/apk/debug/app-debug.apk'
file_name: 'MASCOTA.apk'
file_type: 'apk'
initial_comment: '멍멍🐶 Mascota APK가 왔어요'