@@ -42,31 +42,31 @@ jobs:
4242 run : chmod +x gradlew
4343
4444 - name : Build Modern Alpha APK
45- if : ${{ inputs.modern && inputs.type == " alpha" }}
45+ if : ${{ inputs.modern && inputs.type == ' alpha' }}
4646 run : ./gradlew assembleAlphaModernRelease
4747
4848 - name : Build Modern Beta APK
49- if : ${{ inputs.modern && inputs.type == " beta" }}
49+ if : ${{ inputs.modern && inputs.type == ' beta' }}
5050 run : ./gradlew assembleBetaModernRelease
5151
5252 - name : Build Modern Production APK
53- if : ${{ inputs.modern && inputs.type == " prod" }}
53+ if : ${{ inputs.modern && inputs.type == ' prod' }}
5454 run : ./gradlew assembleProdModernRelease
5555
5656 - name : Build Legacy Beta APK
57- if : ${{ inputs.legacy && inputs.type == " beta" }}
57+ if : ${{ inputs.legacy && inputs.type == ' beta' }}
5858 run : ./gradlew assembleBetaLegacyRelease
5959
6060 - name : Build Legacy Alpha APK
61- if : ${{ inputs.legacy && inputs.type == " alpha" }}
61+ if : ${{ inputs.legacy && inputs.type == ' alpha' }}
6262 run : ./gradlew assembleAlphaLegacyRelease
6363
6464 - name : Build Legacy Production APK
65- if : ${{ inputs.legacy && inputs.type == " prod" }}
65+ if : ${{ inputs.legacy && inputs.type == ' prod' }}
6666 run : ./gradlew assembleProdLegacyRelease
6767
6868 - name : Sign Modern Alpha APK
69- if : ${{ inputs.modern && inputs.type == " alpha" }}
69+ if : ${{ inputs.modern && inputs.type == ' alpha' }}
7070 uses : r0adkll/sign-android-release@v1
7171 id : sign_alpha
7272 with :
7979 BUILD_TOOLS_VERSION : " 34.0.0"
8080
8181 - name : Sign Modern Beta APK
82- if : ${{ inputs.modern &&inputs.type == " beta" }}
82+ if : ${{ inputs.modern &&inputs.type == ' beta' }}
8383 uses : r0adkll/sign-android-release@v1
8484 id : sign_beta
8585 with :
9292 BUILD_TOOLS_VERSION : " 34.0.0"
9393
9494 - name : Sign Modern Production APK
95- if : ${{ inputs.modern && inputs.type == " prod" }}
95+ if : ${{ inputs.modern && inputs.type == ' prod' }}
9696 uses : r0adkll/sign-android-release@v1
9797 id : sign_prod
9898 with :
@@ -105,7 +105,7 @@ jobs:
105105 BUILD_TOOLS_VERSION : " 34.0.0"
106106
107107 - name : Sign Legacy Beta APK
108- if : ${{ inputs.legacy && inputs.type == " beta" }}
108+ if : ${{ inputs.legacy && inputs.type == ' beta' }}
109109 uses : r0adkll/sign-android-release@v1
110110 id : sign_beta_legacy
111111 with :
@@ -118,7 +118,7 @@ jobs:
118118 BUILD_TOOLS_VERSION : " 34.0.0"
119119
120120 - name : Sign Legacy Alpha APK
121- if : ${{ inputs.legacy && inputs.type == " alpha" }}
121+ if : ${{ inputs.legacy && inputs.type == ' alpha' }}
122122 uses : r0adkll/sign-android-release@v1
123123 id : sign_alpha_legacy
124124 with :
@@ -131,7 +131,7 @@ jobs:
131131 BUILD_TOOLS_VERSION : " 34.0.0"
132132
133133 - name : Sign Legacy Production APK
134- if : ${{ inputs.legacy && inputs.type == " prod" }}
134+ if : ${{ inputs.legacy && inputs.type == ' prod' }}
135135 uses : r0adkll/sign-android-release@v1
136136 id : sign_prod_legacy
137137 with :
@@ -144,49 +144,49 @@ jobs:
144144 BUILD_TOOLS_VERSION : " 34.0.0"
145145
146146 - name : Upload Modern Beta APK
147- if : ${{ inputs.modern && inputs.type == " beta" }}
147+ if : ${{ inputs.modern && inputs.type == ' beta' }}
148148 uses : actions/upload-artifact@v4
149149 with :
150150 name : " Beta APK"
151151 retention-days : 90
152152 path : " app/build/outputs/apk/betaModern/release/app-beta-modern-release-signed.apk"
153153
154154 - name : Upload Modern Alpha APK
155- if : ${{ inputs.modern && inputs.type == " alpha" }}
155+ if : ${{ inputs.modern && inputs.type == ' alpha' }}
156156 uses : actions/upload-artifact@v4
157157 with :
158158 name : " Alpha APK"
159159 retention-days : 90
160160 path : " app/build/outputs/apk/alphaModern/release/app-alpha-modern-release-signed.apk"
161161
162162 - name : Upload Modern Production APK
163- if : ${{ inputs.modern && inputs.type == " prod" }}
163+ if : ${{ inputs.modern && inputs.type == ' prod' }}
164164 uses : actions/upload-artifact@v4
165165 with :
166166 name : " Production APK"
167167 retention-days : 90
168168 path : " app/build/outputs/apk/prodModern/release/app-prod-modern-release-signed.apk"
169169
170170 - name : Upload Legacy Beta APK
171- if : ${{ inputs.legacy && inputs.type == " beta" }}
171+ if : ${{ inputs.legacy && inputs.type == ' beta' }}
172172 uses : actions/upload-artifact@v4
173173 with :
174174 name : " Legacy Beta APK"
175175 retention-days : 90
176176 path : " app/build/outputs/apk/betaLegacy/release/app-beta-legacy-release-signed.apk"
177177
178178 - name : Upload Legacy Alpha APK
179- if : ${{ inputs.legacy && inputs.type == " alpha" }}
179+ if : ${{ inputs.legacy && inputs.type == ' alpha' }}
180180 uses : actions/upload-artifact@v4
181181 with :
182182 name : " Legacy Alpha APK"
183183 retention-days : 90
184184 path : " app/build/outputs/apk/alphaLegacy/release/app-alpha-legacy-release-signed.apk"
185185
186186 - name : Upload Legacy Production APK
187- if : ${{ inputs.legacy && inputs.type == " prod" }}
187+ if : ${{ inputs.legacy && inputs.type == ' prod' }}
188188 uses : actions/upload-artifact@v4
189189 with :
190190 name : " Legacy Production APK"
191191 retention-days : 90
192- path : " app/build/outputs/apk/prodLegacy/release/app-prod-legacy-release-signed.apk"
192+ path : " app/build/outputs/apk/prodLegacy/release/app-prod-legacy-release-signed.apk"
0 commit comments