File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ permissions:
4
4
5
5
on :
6
6
push :
7
- branches : ['**'] # run on any branch
7
+ branches : ["**"] # run on any branch
8
8
workflow_dispatch :
9
9
10
10
env :
21
21
build_number : ${{ steps.version-control.outputs.build_number }}
22
22
build_date : ${{ steps.version-control.outputs.build_date }}
23
23
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
26
26
steps :
27
27
# ========================
28
28
# 🛠️ Repository Setup
@@ -181,8 +181,7 @@ jobs:
181
181
SLEEP_TIME=30
182
182
183
183
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 ==="
186
185
187
186
# Fetch build status in JSON format
188
187
BUILD_STATUS_JSON=$(npx eas build:view --json $BUILD_ID)
@@ -341,4 +340,4 @@ jobs:
341
340
name : ${{ steps.release-type.outputs.RELEASE_TITLE }}
342
341
body_path : changelog.txt
343
342
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