-
Notifications
You must be signed in to change notification settings - Fork 2
101 lines (87 loc) · 3.67 KB
/
release.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
name: Deploying to Playstore
on:
push:
branches:
- release/**
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.DUKA_MERCHANT_SDK_KEY }}
- uses: actions/checkout@v3
with:
token: ${{secrets.GA_TOKEN}}
submodules: recursive
lfs: false
fetch-depth: 0
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v3
with:
distribution: 'adopt-hotspot'
java-version: 17
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Cache Ruby - Bundler
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Grant Permission to Execute
run: chmod +x gradlew
- name: Set Environment and Git Identity
run: |
git config --global user.email "fastlane@rowlandoti.com"
git config --global user.name "fastrobot"
- name: Install bundle
run: |
gem update bundler
bundle update --bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Configure Keystore
run: |
echo "$ANDROID_KEYSTORE_FILE" > ./.buildsystem/keystore.jks.b64
base64 -d -i ./.buildsystem/keystore.jks.b64 > ./.buildsystem/keystore.jks
echo "storeFile=../.buildsystem/keystore.jks" >> ./.buildsystem/keystore.properties
echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> ./.buildsystem/keystore.properties
echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> ./.buildsystem/keystore.properties
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> ./.buildsystem/keystore.properties
env:
ANDROID_KEYSTORE_FILE: ${{ secrets.ANDROID_KEYSTORE_FILE }}
KEYSTORE_KEY_ALIAS: ${{ secrets.ANDROID_KEYSTORE_KEY_ALIAS }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_STORE_PASSWORD }}
- name: Create Google Play Config file
run: |
echo "$PLAYSTORE_SERVICES_CONFIG" > ./.buildsystem/playstore_services_config.json.b64
base64 -d -i ./.buildsystem/playstore_services_config.json.b64 > ./.buildsystem/playstore_services_config.json
env:
PLAYSTORE_SERVICES_CONFIG: ${{ secrets.PLAYSTORE_SERVICES_CONFIG }}
- name: Build Release APK and Bundle 🚀
run: ./gradlew clean assembleRelease bundleRelease
- name: Distribute app to Alpha track 🚀
run: bundle exec fastlane deployAlpha
- name: Generate CHANGELOG.md
id: generate_change_log
uses: BobAnkh/auto-generate-changelog@master
with:
REPO_NAME: 'RowlandOti/E-CommerceApp-Merchant'
BRANCH: 'docs/changelog'
PULL_REQUEST: 'main'
ACCESS_TOKEN: ${{secrets.GA_TOKEN}}
PATH: 'CHANGELOG.md'
COMMIT_MESSAGE: 'docs(CHANGELOG): update release notes'
TYPE: 'ci:Continuous Integration,test:Tests,feat:New Features,fix:Bug Fixes,lint:Code Style Fixes,docs:Documentation,refactor:Refactors,perf:Performance Improvements'
- name: Create Release
env:
GA_TOKEN: ${{secrets.GA_TOKEN}}
run: bundle exec fastlane postDeployPublishRelease