-
Notifications
You must be signed in to change notification settings - Fork 23
85 lines (85 loc) · 2.9 KB
/
build-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
#name: Build Signed Release
#run-name: Build Signed Release
#
#on:
# push:
# branches:
# - 'main'
#permissions:
# contents: write
#jobs:
# release-signing-build:
# name: Release Signing Build
# runs-on: ubuntu-latest
# env:
# RELEASE_KEYSTORE_PATH: ${{ secrets.RELEASE_KEYSTORE_PATH }}
# RELEASE_SIGNING_PASSWORD: ${{ secrets.RELEASE_SIGNING_PASSWORD }}
# RELEASE_SIGNING_USERNAME: ${{ secrets.RELEASE_SIGNING_PASSWORD }}
# RELEASE_SIGNING_ALIAS: ${{ secrets.RELEASE_SIGNING_ALIAS }}
# GOOGLE_SERVER_CLIENT_ID: ${{ secrets.GOOGLE_SERVER_CLIENT_ID }}
# PIPELESS_AUTH_TOKEN: ${{ secrets.PIPELESS_AUTH_TOKEN }}
#
# steps:
# - name: Checkout
# uses: actions/checkout@v3
#
# - name: Checkout Sarahang
# uses: actions/checkout@v3
# with:
# repository: vipulyaara/sarahang
# path: Sarahang
# ref: master
#
# - name: Grant execute permission for gradlew
# run: chmod +x gradlew
#
# - name: setup JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'temurin'
# cache: gradle
#
# - name: Create Google Services JSON File
# env:
# GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
# run: echo $GOOGLE_SERVICES_JSON | base64 -di > ./app/google-services.json
#
# - name: Decode Keystore
# env:
# ENCODED_KEYSTORE: ${{ secrets.RELEASE_KEYSTORE_BASE64 }}
# DECODED_KEYSTORE_PATH: ${{ secrets.RELEASE_KEYSTORE_PATH }}
# run: |
# echo $ENCODED_KEYSTORE > keystore_base64.txt
# base64 -d keystore_base64.txt > $DECODED_KEYSTORE_PATH
#
# - name: Sign and Build Release Bundle
# env:
# RELEASE_KEYSTORE_PATH: ${{ secrets.RELEASE_KEYSTORE_PATH }}
# RELEASE_SIGNING_PASSWORD: ${{ secrets.RELEASE_SIGNING_PASSWORD }}
# RELEASE_SIGNING_USERNAME: ${{ secrets.RELEASE_SIGNING_PASSWORD }}
# RELEASE_SIGNING_ALIAS: ${{ secrets.RELEASE_SIGNING_ALIAS }}
# GOOGLE_SERVER_CLIENT_ID: ${{ secrets.GOOGLE_SERVER_CLIENT_ID }}
# PIPELESS_AUTH_TOKEN: ${{ secrets.PIPELESS_AUTH_TOKEN }}
# run:
# ./gradlew assembleRelease
#
# - name: Retrieve Version
# run: |
# echo "::set-output name=VERSION_NAME::$(${{github.workspace}}/gradlew -q versionname)"
# id: android_version
#
# - name: Get version
# run: |
# echo "version_name=${{steps.android_version.outputs.VERSION_NAME}}" >> $GITHUB_ENV
#
# - name: Create Release on Github
# uses: softprops/action-gh-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: v${{env.version_name}}
# name: Release - ${{env.version_name}}
# generate_release_notes: true
# prerelease: true
# files: app/build/outputs/apk/release/app-release.apk