-
Notifications
You must be signed in to change notification settings - Fork 0
133 lines (130 loc) · 4.74 KB
/
cd.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: CD
on:
push:
branches:
- 'release-*'
paths:
- 'version.properties'
jobs:
build-live:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Clean build
run: ./gradlew clean
- name: Setup google-services.json (Live)
run: |
mkdir -p ./app/src/live
cat << EOF > ./app/src/live/google-services.json
${{ secrets.google_services_json_live }}
EOF
- name: Setup gcp-service-account.json (Live)
run: |
cat << EOF > ./gcp-service-account-live.json
${{ secrets.app_distribution_service_account_live }}
EOF
- name: Setup secrets.xml for app module (Live)
run: |
mkdir -p ./app/src/live/res/values
cat << EOF > ./app/src/live/res/values/secrets.xml
${{ secrets.secrets_xml_live }}
EOF
- name: Setup secrets.xml for core:network module (Live)
run: |
mkdir -p ./core/network/src/live/res/values
cat << EOF > ./core/network/src/live/res/values/secrets.xml
${{ secrets.secrets_xml_live_core_network }}
EOF
- name: Decode Keystore
env:
ENCODED_STRING: ${{ secrets.KEYSTORE }}
run: |
mkdir -p ./app/keystore
echo $ENCODED_STRING | base64 -di > ./app/keystore/android.jks
- name: Build production apk
run: ./gradlew bundleLiveRelease
env:
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
- name: Upload artifact to Firebase App Distribution
run: ./gradlew appDistributionUploadLiveRelease
- name: Set Message
run: |
PROPERTY=$(head -n 1 version.properties)
VERSION="${PROPERTY/snuttVersionName=}"
TITLE="SNUTT Android 빌드 알림"
MESSAGE="${VERSION} 빌드 완료"
echo "TITLE=$TITLE" >> $GITHUB_ENV
echo "MESSAGE=$MESSAGE" >> $GITHUB_ENV
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: ${{ env.TITLE }}
SLACK_MESSAGE: ${{ env.MESSAGE }}
SLACK_USERNAME: BuildNoti
build-staging:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Clean build
run: ./gradlew clean
- name: Setup google-services.json (Staging)
run: |
mkdir -p ./app/src/staging
cat << EOF > ./app/src/staging/google-services.json
${{ secrets.google_services_json_staging }}
EOF
- name: Setup gcp-service-account.json (Staging)
run: |
cat << EOF > ./gcp-service-account-staging.json
${{ secrets.app_distribution_service_account_staging }}
EOF
- name: Setup secrets.xml for app module (Staging)
run: |
mkdir -p ./app/src/staging/res/values
cat << EOF > ./app/src/staging/res/values/secrets.xml
${{ secrets.secrets_xml_staging }}
EOF
- name: Setup secrets.xml for core:network module (Staging)
run: |
mkdir -p ./core/network/src/staging/res/values
cat << EOF > ./core/network/src/staging/res/values/secrets.xml
${{ secrets.secrets_xml_staging_core_network }}
EOF
- name: Decode Keystore
env:
ENCODED_STRING: ${{ secrets.KEYSTORE }}
run: |
mkdir -p ./app/keystore
echo $ENCODED_STRING | base64 -di > ./app/keystore/android.jks
- name: Build production apk
run: ./gradlew assembleStagingRelease
env:
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
- name: Upload artifact to Firebase App Distribution
run: ./gradlew appDistributionUploadStagingRelease
- name: Slack Upload APK
uses: MeilCli/slack-upload-file@v3
with:
slack_token: ${{ secrets.SLACK_READ_WRITE_TOKEN }}
channel_id: ${{ secrets.SLACK_DEPLOY_CHANNEL_ID }}
file_path: './app/build/outputs/apk/staging/release/app-staging-release.apk'
file_name: 'app-staging-release.apk'
file_type: 'apk'
initial_comment: 'staging-release APK'