1- name : Build
1+ name : Build Authenticator
22
33on :
44 push :
3131
3232jobs :
3333 build :
34- name : Build
34+ name : Build Authenticator
3535 runs-on : ubuntu-24.04
3636
3737 steps :
@@ -80,11 +80,11 @@ jobs:
8080 - name : Check
8181 run : bundle exec fastlane check
8282
83- - name : Build
84- run : bundle exec fastlane buildDebug
83+ - name : Build Authenticator
84+ run : bundle exec fastlane buildAuthenticatorDebug
8585
8686 publish_playstore :
87- name : Publish Play Store artifacts
87+ name : Publish Authenticator Play Store artifacts
8888 needs :
8989 - build
9090 runs-on : ubuntu-24.04
@@ -152,7 +152,8 @@ jobs:
152152 - name : Verify Play Store credentials
153153 if : ${{ inputs.publish-to-play-store }}
154154 run : |
155- bundle exec fastlane run validate_play_store_json_key
155+ bundle exec fastlane run validate_play_store_json_key \
156+ json_key:${{ github.workspace }}/secrets/authenticator_play_store-creds.json }}
156157
157158 - name : Validate Gradle wrapper
158159 uses : gradle/actions/wrapper-validation@0bdd871935719febd78681f197cd39af5b6e16a6 # v4.2.2
@@ -186,7 +187,7 @@ jobs:
186187 run : |
187188 DEFAULT_VERSION_CODE=$GITHUB_RUN_NUMBER
188189 VERSION_CODE="${{ inputs.version-code || '$DEFAULT_VERSION_CODE' }}"
189- bundle exec fastlane setBuildVersionInfo \
190+ bundle exec fastlane setAuthenticatorBuildVersionInfo \
190191 versionCode:$VERSION_CODE \
191192 versionName:${{ inputs.version-name || '' }}
192193
@@ -200,7 +201,7 @@ jobs:
200201 - name : Generate release Play Store bundle
201202 if : ${{ matrix.variant == 'aab' }}
202203 run : |
203- bundle exec fastlane bundleRelease \
204+ bundle exec fastlane bundleAuthenticatorRelease \
204205 storeFile:${{ github.workspace }}/keystores/authenticator_aab-keystore.jks \
205206 storePassword:'${{ secrets.AAB_KEYSTORE_STORE_PASSWORD }}' \
206207 keyAlias:authenticatorupload \
@@ -209,7 +210,7 @@ jobs:
209210 - name : Generate release Play Store APK
210211 if : ${{ matrix.variant == 'apk' }}
211212 run : |
212- bundle exec fastlane buildRelease \
213+ bundle exec fastlane buildAuthenticatorRelease \
213214 storeFile:${{ github.workspace }}/keystores/authenticator_apk-keystore.jks \
214215 storePassword:'${{ secrets.APK_KEYSTORE_STORE_PASSWORD }}' \
215216 keyAlias:bitwardenauthenticator \
@@ -268,7 +269,7 @@ jobs:
268269 env :
269270 FIREBASE_CREDS_PATH : ${{ github.workspace }}/secrets/authenticator_play_firebase-creds.json
270271 run : |
271- bundle exec fastlane distributeReleaseBundleToFirebase \
272+ bundle exec fastlane distributeAuthenticatorReleaseBundleToFirebase \
272273 serviceCredentialsFile:${{ env.FIREBASE_CREDS_PATH }}
273274
274275 # Only publish bundles to Play Store when `publish-to-play-store` is true while building
@@ -278,5 +279,5 @@ jobs:
278279 env :
279280 PLAY_STORE_CREDS_FILE : ${{ github.workspace }}/secrets/authenticator_play_store-creds.json
280281 run : |
281- bundle exec fastlane publishReleaseToGooglePlayStore \
282+ bundle exec fastlane publishAuthenticatorReleaseToGooglePlayStore \
282283 serviceCredentialsFile:${{ env.PLAY_STORE_CREDS_FILE }} \
0 commit comments