We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9c8312 commit 71c975eCopy full SHA for 71c975e
.github/workflows/eas-android-build.yml
@@ -137,6 +137,12 @@ jobs:
137
echo "Copying gradle wrapper into build/android (if present)"
138
node scripts/fixGradleWrapper.js || true
139
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
+
146
BUILD_JSON=$(npx eas build -p android --profile $BUILD_PROFILE --non-interactive --json)
147
echo "Raw build output: $BUILD_JSON"
148
BUILD_ID=$(echo "$BUILD_JSON" | jq -r '.[0].id')
0 commit comments