feat(eas): force bun on EAS via custom build configs + 5-build release workflow (#1632)

This commit is contained in:
Fredrik Burmester
2026-06-01 10:24:52 +02:00
committed by GitHub
parent 21fb056586
commit 8507699cdd
7 changed files with 256 additions and 29 deletions

View File

@@ -56,7 +56,11 @@
"environment": "production",
"autoIncrement": true,
"android": {
"image": "latest"
"image": "latest",
"config": "android-production.yml"
},
"ios": {
"config": "ios-production.yml"
}
},
"production-apk": {
@@ -65,7 +69,8 @@
"autoIncrement": true,
"android": {
"buildType": "apk",
"image": "latest"
"image": "latest",
"config": "android-production-apk.yml"
}
},
"production-apk-tv": {
@@ -74,7 +79,8 @@
"autoIncrement": true,
"android": {
"buildType": "apk",
"image": "latest"
"image": "latest",
"config": "android-production-tv.yml"
},
"env": {
"EXPO_TV": "1"
@@ -88,7 +94,8 @@
"EXPO_TV": "1"
},
"ios": {
"credentialsSource": "local"
"credentialsSource": "local",
"config": "ios-production.yml"
}
}
},