File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -440,10 +440,14 @@ jobs:
440440 PLAY_STORE_TRACK : ${{ github.event.inputs.playstore_track || 'internal' }}
441441 run : |
442442 echo "📤 Uploading to Play Store track: $PLAY_STORE_TRACK"
443+ echo "📂 Checking AAB file..."
444+ ls -lah app/build/outputs/bundle/release/
445+ AAB_FILE=$(ls app/build/outputs/bundle/release/*.aab | head -n 1)
446+ echo "✅ Found AAB: $AAB_FILE"
443447 bundle exec fastlane supply \
444448 --track $PLAY_STORE_TRACK \
445- --aab android/app/build/outputs/bundle/release/cbv-vpn-v${{ needs.prepare.outputs.version }}.aab \
446- --json_key android/ google_play_key.json \
449+ --aab $AAB_FILE \
450+ --json_key google_play_key.json \
447451 --package_name com.cbv.vpn \
448452 --skip_upload_metadata \
449453 --skip_upload_images \
You can’t perform that action at this time.
0 commit comments