File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ permissions:
44
55on :
66 push :
7- branches : ['**'] # run on any branch
7+ branches : ["**"] # run on any branch
88 workflow_dispatch :
99
1010env :
2121 build_number : ${{ steps.version-control.outputs.build_number }}
2222 build_date : ${{ steps.version-control.outputs.build_date }}
2323 is_production : ${{ steps.version-control.outputs.is_production }}
24- eas_profile : ${{ steps.version-control.outputs.eas_profile }} # added dynamic profile output
25- eas_channel : ${{ steps.version-control.outputs.eas_channel }} # added dynamic channel output
24+ eas_profile : ${{ steps.version-control.outputs.eas_profile }} # added dynamic profile output
25+ eas_channel : ${{ steps.version-control.outputs.eas_channel }} # added dynamic channel output
2626 steps :
2727 # ========================
2828 # 🛠️ Repository Setup
@@ -181,8 +181,7 @@ jobs:
181181 SLEEP_TIME=30
182182
183183 while [[ $RETRY_COUNT -lt $MAX_RETRIES ]]; do
184- echo -e "
185- === Attempt $((RETRY_COUNT+1))/$MAX_RETRIES ==="
184+ echo -e "=== Attempt $((RETRY_COUNT+1))/$MAX_RETRIES ==="
186185
187186 # Fetch build status in JSON format
188187 BUILD_STATUS_JSON=$(npx eas build:view --json $BUILD_ID)
@@ -341,4 +340,4 @@ jobs:
341340 name : ${{ steps.release-type.outputs.RELEASE_TITLE }}
342341 body_path : changelog.txt
343342 files : app-release.apk
344- prerelease : ${{ needs.build-android.outputs.is_production != 'true' }}
343+ prerelease : ${{ needs.build-android.outputs.is_production != 'true' }}
You can’t perform that action at this time.
0 commit comments