Skip to content

Commit 871890a

Browse files
authored
undo retry and bump version (#1170)
1 parent 0e3b4e8 commit 871890a

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

.github/workflows/mobile-deploy.yml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -925,22 +925,18 @@ jobs:
925925
926926
- name: Upload to Google Play Store using WIF
927927
if: inputs.platform != 'ios' && inputs.test_mode != true
928-
uses: nick-fields/retry@v3
929-
with:
930-
timeout_minutes: 10
931-
max_attempts: 3
932-
retry_wait_seconds: 30
933-
command: |
934-
cd ${{ env.APP_PATH }}
935-
936-
# Determine deployment track
937-
DEPLOYMENT_TRACK="${{ inputs.deployment_track || 'internal' }}"
938-
939-
echo "🚀 Uploading to Google Play Store using Workload Identity Federation..."
940-
python scripts/upload_to_play_store.py \
941-
--aab "android/app/build/outputs/bundle/release/app-release.aab" \
942-
--package-name "${{ secrets.ANDROID_PACKAGE_NAME }}" \
943-
--track "$DEPLOYMENT_TRACK"
928+
timeout-minutes: 10
929+
run: |
930+
cd ${{ env.APP_PATH }}
931+
932+
# Determine deployment track
933+
DEPLOYMENT_TRACK="${{ inputs.deployment_track || 'internal' }}"
934+
935+
echo "🚀 Uploading to Google Play Store using Workload Identity Federation..."
936+
python scripts/upload_to_play_store.py \
937+
--aab "android/app/build/outputs/bundle/release/app-release.aab" \
938+
--package-name "${{ secrets.ANDROID_PACKAGE_NAME }}" \
939+
--track "$DEPLOYMENT_TRACK"
944940
945941
# Version updates moved to separate job to avoid race conditions
946942

app/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"lastDeployed": "2025-09-30T16:35:10Z"
55
},
66
"android": {
7-
"build": 105,
7+
"build": 106,
88
"lastDeployed": "2025-09-30T16:59:07Z"
99
}
1010
}

0 commit comments

Comments
 (0)