Skip to content

Commit 71c975e

Browse files
Gradle copy bug fix.
1 parent e9c8312 commit 71c975e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,12 @@ jobs:
137137
echo "Copying gradle wrapper into build/android (if present)"
138138
node scripts/fixGradleWrapper.js || true
139139
140+
# Commit generated build files so EAS (which uses the git tree) includes them
141+
git config user.email "actions@github.com"
142+
git config user.name "GitHub Actions"
143+
git add build/android || true
144+
git commit -m "chore(ci): include gradle wrapper for EAS build [skip ci]" || true
145+
140146
BUILD_JSON=$(npx eas build -p android --profile $BUILD_PROFILE --non-interactive --json)
141147
echo "Raw build output: $BUILD_JSON"
142148
BUILD_ID=$(echo "$BUILD_JSON" | jq -r '.[0].id')

0 commit comments

Comments
 (0)