-
-
Notifications
You must be signed in to change notification settings - Fork 10
123 lines (101 loc) · 4.03 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
name: CD
on:
release:
types: [published]
branches:
- main
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- name: Retrieving custom app configuration
uses: actions/checkout@v3
- name: Retrieving Kiwix Android source code
run: git clone --depth=1 --single-branch --branch main https://github.com/kiwix/kiwix-android.git
- name: Copying custom app configuration into Kiwix Android code base
run: ./copy_files_to_kiwix_android.sh
- name: Preparing signing material
env:
keystore: ${{ secrets.keystore }}
playstore_json: ${{ secrets.PLAYSTORE_JSON }}
run: |
echo "$playstore_json" > kiwix-android/playstore.json
echo "$keystore" | base64 -d > kiwix-android/kiwix-android.keystore
- name: Set tag variable
run: echo "TAG=$(echo ${GITHUB_REF:10})" >> $GITHUB_ENV
- name: Install jq
run: sudo apt-get install -y jq
- name: Should upload Bundle
run: |
cd ${TAG}
should_publish_bundle=$(jq -r '.upload_bundle // empty' info.json)
if [ "$should_publish_bundle" == 'true' ]; then
echo "should_publish_bundle=true" >> $GITHUB_ENV
else
echo "should_publish_bundle=false" >> $GITHUB_ENV
fi
- name: Publishing app to Google Play
env:
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION: ${{ secrets.DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION }}
run: |
cd kiwix-android
if [ "${{ env.should_publish_bundle }}" == 'true' ]; then
eval "./gradlew publish${TAG^}ReleaseBundleWithPlayAssetDelivery"
else
eval "./gradlew publish${TAG^}ReleaseApkWithExpansionFile"
fi
publish_dummy_bundle:
runs-on: ubuntu-22.04
steps:
- name: Retrieving custom app configuration
uses: actions/checkout@v3
- name: Retrieving Kiwix Android source code
run: git clone --depth=1 --single-branch --branch main https://github.com/kiwix/kiwix-android.git
- name: Copying custom app configuration into Kiwix Android code base
run: ./copy_files_to_kiwix_android.sh
- name: Install jq
run: sudo apt-get install -y jq
- name: Set tag variable
run: echo "TAG=$(echo ${GITHUB_REF:10})" >> $GITHUB_ENV
- name: Should upload dummy Bundle
run: |
cd ${TAG}
should_publish=$(jq -r '.new // empty' info.json)
if [ "$should_publish" == 'true' ]; then
echo "should_publish=true" >> $GITHUB_ENV
else
echo "should_publish=false" >> $GITHUB_ENV
fi
- name: Preparing signing material
if: env.should_publish == 'true'
env:
keystore: ${{ secrets.keystore }}
run: |
echo "$keystore" | base64 -d > kiwix-android/kiwix-android.keystore
- name: Generate dummy Bundle
if: env.should_publish == 'true'
env:
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}
DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION: ${{ secrets.DWDS_HTTP_BASIC_ACCESS_AUTHENTICATION }}
run: |
cd kiwix-android
eval "./gradlew bundle${TAG^}Release"
- name: Get Bundle name and path
if: env.should_publish == 'true'
id: bundle-path
run: |
BUNDLE_PATH="kiwix-android/custom/build/outputs/bundle/${TAG}Release/*${TAG}*.aab"
BUNDLE_NAME="${TAG^}DummyBundle.aab"
echo "bundle_path=$BUNDLE_PATH" >> $GITHUB_ENV
echo "bundle_name=$BUNDLE_NAME" >> $GITHUB_ENV
- name: Upload Bundle as an artifact
if: env.should_publish == 'true'
uses: actions/upload-artifact@v2
with:
name: ${{ env.bundle_name }}
path: ${{ env.bundle_path }}