diff --git a/.github/workflows/CI_STORE_DEPLOY_ANDROID.yaml b/.github/workflows/CI_STORE_DEPLOY_ANDROID.yaml index 66c37b1..e16674f 100644 --- a/.github/workflows/CI_STORE_DEPLOY_ANDROID.yaml +++ b/.github/workflows/CI_STORE_DEPLOY_ANDROID.yaml @@ -18,7 +18,7 @@ jobs: KEYSTORE_PATH: android/upload-keystore.jks KEY_PROPS_PATH: android/key.properties SERVICE_ACCOUNT_PATH: store_credentials.json - PACKAGE_NAME: com.example.hub_finder + PACKAGE_NAME: tech.bunnie.hub_finder steps: # Checkout repository codebase - name: Checkout the code @@ -72,13 +72,13 @@ jobs: uses: actions/upload-artifact@master with: name: aab-stores - path: { { env.AAB_PATH } } + path: ${{ env.AAB_PATH }} # Deploy bundle to Google Play internal testing - name: Deploy to Play Store (Internal testing) uses: r0adkll/upload-google-play@v1 with: - serviceAccountJson: { { env.SERVICE_ACCOUNT_PATH } } - packageName: { { env.PACKAGE_NAME } } - releaseFiles: { { env.AAB_PATH } } + serviceAccountJson: ${{ env.SERVICE_ACCOUNT_PATH }} + packageName: ${{ env.PACKAGE_NAME }} + releaseFiles: ${{ env.AAB_PATH }} track: internal