Skip to content

Commit 2997243

Browse files
Fixed error on line 185.
1 parent f9a86f2 commit 2997243

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/eas-android-build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ permissions:
44

55
on:
66
push:
7-
branches: ['**'] # run on any branch
7+
branches: ["**"] # run on any branch
88
workflow_dispatch:
99

1010
env:
@@ -21,8 +21,8 @@ jobs:
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' }}

0 commit comments

Comments
 (0)