Skip to content

Commit

Permalink
Merge pull request #206 from Crossbell-Box/develop
Browse files Browse the repository at this point in the history
chore: Disabled dotenv in EAS CI.
  • Loading branch information
dohooo committed Jul 17, 2023
2 parents 4e846cc + c935920 commit 5748211
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/tidy-ties-drop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"xlog": minor
---

Disabled dotenv in EAS CI.
16 changes: 12 additions & 4 deletions eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"build": {
"development-simulator": {
"env": {
"STAGE": "development"
"STAGE": "development",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"developmentClient": true,
"distribution": "internal",
Expand All @@ -17,7 +19,9 @@
},
"development": {
"env": {
"STAGE": "development"
"STAGE": "development",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"developmentClient": true,
"distribution": "internal",
Expand All @@ -28,7 +32,9 @@
},
"preview": {
"env": {
"STAGE": "test"
"STAGE": "test",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"distribution": "internal",
"ios": {
Expand All @@ -39,7 +45,9 @@
},
"production": {
"env": {
"STAGE": "production"
"STAGE": "production",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"ios": {
"resourceClass": "large"
Expand Down

0 comments on commit 5748211

Please sign in to comment.